{% extends 'base.html' %} {% block title %}Rigboard{% endblock %} {% block content %}
| # | Event Date | Event Details | Event Timings | MIC | {% for event in events %}
| {{ event.pk }} |
{{ event.start_date|date:"SHORT_DATE_FORMAT" }}
{% if event.end_date and event.end_date != event.start_date %}
{{ event.end_date|date:"SHORT_DATE_FORMAT" }}
{% endif %}
|
{{ event.name }} {% if event.venue %} at {{ event.venue }} {% endif %}{% if event.is_rig %}{{ event.person.name }} {% if event.organisation %} for {{ event.organisation.name }} {% endif %}{% endif %} {% if not event.cancelled and event.description %}
{{ event.description|linebreaksbr }}
{% endif %}
|
|
{{ event.mic.initials }} |