{% extends "base.html" %} {% load i18n %} {% block page_name %}{% trans team_event.name %}{% endblock %} {% block extrahead %}{{ block.super }} {% if team_event.description %} {% endif %} {% if team_event.venue %} {% endif %} {{ form.media }} {% endblock %} {% block sub_nav_links %} {% for team in team_event.teams.all %}
  • {{ team.name }}
  • {% endfor %} {% if user.is_authenticated %} {% if user_is_team_member %}
  • {% trans "Edit Details" %}
  • {% trans "Delete Event" %}
  • {% trans "Copy Event" %}
  • {% endif %} {% endif %}
  • {% trans "iCal Feed" %}
  • {% endblock %} {% block content %} {% include "events/team_event_detail.inc.html" %} {% endblock %}