{% extends "base.html" %} {% load i18n %} {% block page_name %}{% trans team_event_object.name %}{% endblock %} {% block extrahead %}{{ block.super }} {% if team_event_object.description %} {% endif %} {% if team_event_object.venue %} {% endif %} {{form.media}} {% endblock %} {% block sub_nav_links %} {% for team in team_event_object.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 %}