{% load i18n %} {% block cell-content %} {% if cell.title %}

{{ cell.title }}

{% endif %}

{% blocktrans trimmed with start_day=days|first|date:"j" end_date=days|last|date:"j F Y" %} Week from {{ start_day }} to {{ end_date }} {% endblocktrans %}

{% for day, events in events_by_day.items %}

    {% for event in events %}
  • {{ event.start_datetime|time }} - {{ event.end_datetime|time }} {{ event.label }} {% if cell.booking_form_slug and not event.disabled %} {% trans "Book" context "book an event" %} {% elif event.full %} {% trans "Full" context "book an event" %} {% endif %} {% if event.description %} {% trans "Details" %} {% endif %}

    {% if event.description %}

    {{ event.description|linebreaksbr }}

    {% if event.pricing or event.url %}
    {% if event.pricing %}
    {% trans "Price" %}
    {{ event.pricing }}
    {% endif %} {% if event.url %}
    URL
    {{ event.url }}
    {% endif %}
    {% endif %}
    {% endif %}
  • {% endfor %}
{% endfor %}
{% endblock %}