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

    {% trans "Ubuntu Teams Meeting History" %}

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

    {% if team_meeting_list %}

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

    {% include "meetings/team_meeting_list.inc.html" %} {% else %}

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

    {% endif %}
    {% endblock %}