{% extends "base.html" %} {% load i18n %} {% block page_name %}{% blocktrans with team_object.name as teamname %}{{teamname}} Meeting History{% endblocktrans %}{% endblock %} {% block sub_nav_links %}
  • {% trans "Back to Team Details" %}
  • {% trans "Upcoming Meetings" %}
  • {% endblock %} {% block content %}

    {% blocktrans with team_object.name as teamname %}{{teamname}} Meeting History{% endblocktrans %}

    {% if team_meeting_list %}

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

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

    {% blocktrans with team_object.lp_name as teamname %}There are no past meetings for {{teamname}} :({% endblocktrans %}

    {% endif %}
    {% endblock %}