{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Ubuntu LoCo Events List" %}{% endblock %} {% block sub_nav_links %} {% trans "Venues" %} {% if user_is_on_lc %} {% trans "Add Global Event" %} {% endif %} {% if user.is_authenticated %} {% trans "Add Team Event" %} {% endif %} {% trans "Past Events" %} {% endblock %} {% block search_box %}
{{ form.as_line }}
{% endblock %} {% block content %}

{% trans "Ubuntu LoCo Global Events" %} {% if global_event_list %}

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

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

{% trans "There are currently no LoCo Global Events" %}

{% endif %}

{% trans "Ubuntu LoCo Team Events" %} {% 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 are currently no LoCo Team Events" %}

{% endif %}
{% endblock %}