{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Ubuntu LoCo Events History" %}{% endblock %} {% block sub_nav_links %} {% trans "Upcoming Events" %} {% 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" %}

{% 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 %}