{% extends "locations/base.html" %} {% load locations_tags %} {% load base_filters %} {% load base_tags %} {% block title %}{{ block.super }}{{ location.location_name }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% firstof location.location_name "Untitled" %}

{% if location.logo %} {% endif %}
{% if location.contact %}

{{ location.contact }}

{% endif %}

{{ location.address }}
{% if location.address2 %}{{ location.address2 }}
{% endif %} {{ location.city }}, {{ location.state }} {{ location.zipcode }}

{% if location.country %}

{{ location.country }}

{% endif %} {% if location.phone %}

{{ location.phone|phonenumber }}

{% endif %} {% if location.fax %}

Fax: {{ location.fax|phonenumber }}

{% endif %} {% if location.email %}

{{ location.email|obfuscate_email }}

{% endif %} {% if location.website %}

{{ location.website|urlize }}

{% endif %}
{{ location.description|safe|linebreaks }}
{% endblock %}