{% extends "core/generic_detail.html" %}
{% block title %}Rinks{% endblock %}
{% block detailTitle %}Rink Detail{% endblock %}
{% block detailName %}{{ object.name }}{% endblock %}
{% block selectedTabRinks %} class="selected"{% endblock %}
{% block detailView %}
Team Detail
Rink Name: | {% autoescape on %}{{ object.name }}{% endautoescape %} |
Rink Address
Address: | {{ object.address }}, {{ object.state }} {{ object.zip }} |
{% ifnotequal object.arenaMapsURL "" %}
Map: | Link |
{% else %}
Map: | No Map Provided |
{% endifnotequal %}
Rink Contact
Name: | {{ object.contactName }} |
Email: | {{ object.contactEmail }} |
Phone: | {{ object.contactPhone }} |
{% if user.is_authenticated %}
{% endif %}
{% endblock %}