added importer for events of the Engelsburg in Erfurt

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-01-03 10:29:25 +01:00
parent 0051ec0b8f
commit 0d1215558e
4 changed files with 183 additions and 7 deletions
@@ -21,12 +21,8 @@
<table id="eventlist">
<tr class="head">
<th>Start
<div class="buttons">
</div>
<div class="buttons"></div>
</th>
<th>End</th>
<th>Title</th>
<th>Location</th>
<th>Tags <span id="tag_selection"></span></th>
@@ -3,7 +3,7 @@ body {
}
.index tr:hover td,
.index tr:hover th{
background-color: khaki;
background-color: darksalmon;
}
a {
@@ -163,4 +163,10 @@ table#eventlist{
.event h1{
margin-top: 40px;
}
td:nth-child(1) {
text-align: center;
}
tr:nth-child(4n) {
background: khaki;
}
@@ -24,7 +24,6 @@ function addRow(json){
}
//addCell(row,json.id,json.id);
addCell(row,json.start,json.id);
addCell(row,json.end,json.id);
addCell(row,json.title,json.id);
addCell(row,json.location,json.id);
row.appendChild(createTags(json.tags));