Add notes to event list view
This commit is contained in:
parent
1aaa3f68d4
commit
eaa154f829
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
{% if events %}
|
||||
<ul>
|
||||
{% for x in events %}
|
||||
<li id="{{x.event.id}}">{{ x.event.date|date:"d F Y" }}, {{ x.event.time_str }}
|
||||
<li id="{{x.event.id}}">{{ x.event.date|date:"d F Y" }}, {{ x.event.time_str }}{% if x.event.note %}, <b>{{ x.event.note }}</b>{% endif %}
|
||||
{% include "events/registrations.html" with event=x.event my_registration=x.my_registration %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue