{% extends "entities/base.html" %} {% load entity_tags %} {% load tagging_tags %} {% load base_tags %} {% load base_filters %} {% load category_tags %} {% block title %}{{ block.super }}{% blocktrans with n=entity.entity_name %}{{ n }}{% endblocktrans %}{% endblock %} {% block content %} {% tags_for_object entity as tags %}
{% entity_options request.user entity %}

{% blocktrans with n=entity.entity_name %}{{ n }}{% endblocktrans %}

{% blocktrans with n=entity.notes|safe %}{{ n }}{% endblocktrans %}
{% blocktrans with s=entity.summary|safe %}{{ s }}{% endblocktrans %}

{% trans "Contact:" %}

{{ entity.contact_name|safe }}
{{ entity.phone|safe }} {{ entity.fax|safe }}
{{ entity.email|safe }}
{{ entity.website|safe }}

{% blocktrans with n=entity.admin_notes|safe %}{{ n }}{% endblocktrans %}


{% url 'entity' entity.pk as the_url %}

{% fb_like_button_iframe the_url %}

{% csrf_token %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}