{% extends "base.html" %} {% block extrahead %}{{ block.super }} {{form.media}} {% endblock %} {% load i18n %} {% block page_name %}{% trans "Ubuntu LoCo Events History" %}{% endblock %} {% block sub_nav_links %}
  • {% trans "Back to Events List" %}
  • {% endblock %} {% block content %}

    {% trans "Ubuntu LoCo Global Events History" %}

    {% if global_event_list %}

    {% trans "Select a past global event below to see more information about it:" %}

    {% include "events/global_event_list.inc.html" %} {% else %}

    {% trans "There have been no LoCo Global Events in the past :(" %}

    {% endif %}

    {% trans "Ubuntu LoCo Team Events History" %}

    {% csrf_token %} {% for field in form %} {% endfor %}
    {{ field }} {{ field.errors }}

    {% if team_event_list %}

    {% trans "Select a past team event below to see more information about it:" %}

    {% include "events/team_event_list.inc.html" %} {% else %}

    {% trans "There have been no LoCo Team Events in the past :(" %}

    {% endif %}
    {% endblock %}