{% extends "base.html" %} {% block content %}
{% block content_title %} {% endblock %} {% if articles_page.has_other_pages() %} {% include 'pagination.html' %} {% endif %}
{% for article in articles_page.object_list %} {% if article.category %} {% if article.event_start %} {% set event_status = '' %} {% if article.event_start < article.date.now() %} {% set event_status = ' past' %} {% endif %} {% if article.event_start >= article.date.now() %} {% set event_status = ' current' %} {% endif %} {% endif %} {% endfor %}
{% endblock content %}