2024-12-16
This commit is contained in:
15
server/app/templates/includes/day.html
Normal file
15
server/app/templates/includes/day.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="day">
|
||||
<div class="day-title{% if day == today.date()%} current-day{% endif %}">
|
||||
{{ day.strftime('%a %-d') }}
|
||||
</div>
|
||||
<div class="events">
|
||||
{% for event in events %}
|
||||
<div class="event">
|
||||
{{ event.summary }}<br>
|
||||
{% if not event.is_all_day %}
|
||||
<span class="daterange">{{ event.range_str }}</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user