{% extends "module.html" %} {% block body %}
{{ module.data._timestamp | prettydate }}
{# Show the necessary authentication steps in case we don't have access yet #} {% if module.data.hint %}

Authentication required

Scan the QR code or visit {{ module.data.hint.verification_url }} and enter the code {{ module.data.hint.user_code }}

{% endif %} {% for item in module.data.events %}

{{ item.start | format_time("%d") }}

{{ item.start | format_time("%b") }}
{{ item.summary }}
  • {{ item.start | format_time("%A") }}
  • {% if item.type == "time" %}
  • {{ item.start | format_time("%H:%M") }} - {{ item.end | format_time("%H:%M") }}
  • {% endif %} {% if item.location %}
  • Location
  • {% endif %}
{% endfor %}
{% endblock %}