{% 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 }}
{% for team in team_queryset %} {% endfor %}
Team Name Division Skill Coach Manager
{{ team.name }} {{ team.division }} {{ team.skillLevel }} {{ team.coachName}} {{ team.managerName}}
{% if user.is_authenticated %}
{% endif %} {% endblock %}