diff options
author | Christian Franke <nobody@nowhere.ws> | 2016-04-05 14:32:22 -0300 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2016-04-05 14:32:22 -0300 |
commit | c7b404d07d40a795427dcc7459248d56ec34935a (patch) | |
tree | 7e67f67a319d38d5b080d038ba0f6392a6d258e4 /template | |
parent | 6ad9e9387cb4daba9537ecdbe8b118d9eac209a6 (diff) |
Highlight onetime events in tabular calendar
Diffstat (limited to 'template')
-rw-r--r-- | template/tabcalendar.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/tabcalendar.j2 b/template/tabcalendar.j2 index 676ab8f..fe4e2a8 100644 --- a/template/tabcalendar.j2 +++ b/template/tabcalendar.j2 @@ -22,7 +22,7 @@ {%- if day.events %} <ul> {%- for event in day.events %} -<li><a href="#event-{{ event.id }}">{{ event.name }}</a></li> +<li {% if not event.recurring %}class="onetime"{%endif%}><a href="#event-{{ event.id }}">{{ event.name }}</a></li> {%- endfor %} </ul> {%- endif %} |