implemented tag filtering

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-12-27 00:09:59 +01:00
parent 5b05b85717
commit 469a7c1901
3 changed files with 65 additions and 21 deletions

View File

@@ -10,15 +10,19 @@
<nav />
<div>
<h1>Event List</h1>
<div id="eventnav"></div>
<span id="eventnav">
<button onclick="fetchLastMonth()">Load previous month</button>
<button onclick="fetchLastYear()">Load previous year</button>
</span>
<span id="tag_selection"></span>
<table id="eventlist">
<tr>
<tr class="head">
<th>ID</th>
<th>Start</th>
<th>End</th>
<th>Location</th>
<th>Title</th>
<th>Tags</th>
<th>Tags click to filter!</th>
</tr>
</table>
</div>