{% extends "core/generic_detail.html" %}
{% block title %}Clubs{% endblock %}
{% block detailTitle %}Club Detail{% endblock %}
{% block detailName %}{{ object.name }}{% endblock %}
{% block selectedTabClubs %} class="selected"{% endblock %}
{% block detailView %}
Team Detail
Address: | {{ object.address }}, {{ object.state }} {{ object.zip }} |
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 %}