{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Ubuntu LoCo Events History" %}{% endblock %} {% block content %}

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

{% if global_event_list %}

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

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

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

{% endif %}

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

{% if team_event_list %}

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

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

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

{% endif %}
{% endblock %}