{% extends "stockphoto/base.html" %} {% load markup %} {% block title %} {% if object %} {{ object.gallery.title }} : {{ object.title }} {% endif %} {% endblock %} {% block content %} {% if object %} {% if object.prev %}
{{ object.prev.title }} « {{ object.prev.title }}
{% endif %} {% if object.next %}
{{ object.next.title }} {{ object.next.title }} »
{% endif %}
{{ object.title }}

{{ object.title }}

{{ object.desc|markdown}}

{% if object.photographer %}

Photo by {{ object.photographer }}.

{% endif %} {% if object.date %}

Photo taken {{ object.date|date:"F d, Y" }}.

{% endif %} {% if object.extra %}

More information

{{ object.extra|markdown }}

{% endif %} {% if object.article_set.all %}

Articles using this picture

{% endif %} {% if object.initiative_set.all %}

Initiatives using this picture

{% endif %}
{% if object.prev %} « previous {% endif %} {% if object.next %} next » {% endif %} {% if not user.is_anonymous %}

Edit this image.

{% endif %} {% else %}

This is not the photo you are looking for.

{% endif %} {% endblock %}