{% extends "core/generic_detail.html" %}
{% block title %}Divisions{% endblock %}
{% block detailTitle %}Division Detail{% endblock %}
{% block detailName %}{{ object.name }}{% endblock %}
{% block selectedTabDivisions %} class="selected"{% endblock %}
{% block detailView %}
Division Contact
Contact Name | {{ object.contactName }} |
Contact Email | {{ object.contactEmail }} |
Contact Phone | {{ object.contactPhone }} |
Team Name |
Division |
Skill |
Coach |
Manager |
{% for team in team_queryset %}
{{ team.name }} |
{{ team.division }} |
{{ team.skillLevel }} |
{{ team.coachName}} |
{{ team.managerName}} |
{% endfor %}
{% if user.is_authenticated %}
{% endif %}
{% endblock %}