The idea is, to display
- modified
- tiddler title
- published (=custom field)
and limit the output by
- number of lines (pulldown)
- on tags (pulldown)
- sorted by modified
like:
I started with:
<$vars modif="[get[modified]]">
<span style="color: rgb(255,201,102); font-size: 1em">
<nav>
<label>Die letzten
<$select field=max default=5>
<$list filter="3 10 20 50 100 200 500" variable=limit>
<option value=<<limit>>><<limit>></option>
</$list>
</$select> Änderungen <br>
Tiddler eingeschränkt auf
@@.combobox
<$select field=selection>
<option value='tag[myTag]'> </option>
<option value='2021'>Jahr 2021</option>
<option value='2020'>Jahr 2020</option>
</$select>
<$edit-text field=selection placeholder=“type or select”/>
@@
</label>
</nav>
<ul>
<$list variable=output filter="[!is[system]has[erstellt]sortsub:date<modif>reverse[]limit{!!max}]">
<li>
<span style="color: rgb(150, 204, 255);font-size: 0.75em">
<$view tiddler =<<art>> field=modified format=date template="0DD. MMM YYYY um 0hh:0mm Uhr"/>
</span>
<span style="color: rgb(255, 201, 102)"> -
</span>
<span style="font-size: 0.9em">
<$link to=<<output>>/>
</span>
</li>
</$list>
</ul>
</span>
and hang at that point to apply the choosen tag into the filter and to display the published field to the output list.
Thanks for any hint and support.
Stefan

