{% extends 'newscenter/base.html' %} {% load thumbnail %} {% block title %}{{ article.title }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block extra_js %} {% endblock %} {% block appcontent %}

{{ article.title }}

{% if article.teaser %}

{{ article.teaser }}

{% endif %}

{{ article.release_date|date:"F j, Y P" }}

{% if article.images.count %}
{% if article.images.count > 1 %}
{% for image in article.images.all %} {{ image.name }} {% endfor %}
{% endif %}
{% endif %} {% if article.location %}
Location: {{ article.location }}
{% endif %}
{{ article.body|safe }}
{% if article.categories.all %}
Categor{{ article.categories.count|pluralize:"y,ies" }}:
{% endif %} {% if article.contacts.all %}

Contacts:

{% for contact in article.contacts.all %}

{{ contact.name }}

{{ contact.phone }} {{ contact.email|urlize }}

{% endfor %}
{% endif %} {% endblock %}