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

{% trans "Ubuntu LoCo Venues" %}

{% if user.is_authenticated %}

{% trans "Add new venue." %}

{% endif %}
{{ form.as_line }}
{% if venue_list %}

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

{% regroup venue_list by country as venue_country_list %} {% for country in venue_country_list %}

{{ country.grouper }}


{% endfor %} {% else %}

{% trans "There are currently no LoCo Venues :(" %}

{% endif %}
{% endblock %}