view mysite/photologue/templates/photologue/photo_archive_day.html @ 6:fa724fb48b2c

Show country on home page for upcoming shows if outside the USA.
author Brian Neal <bgneal@gmail.com>
date Thu, 14 May 2009 00:53:26 +0000
parents 0dcfcdf50c62
children
line wrap: on
line source
{% extends "photologue/root.html" %}

{% block title %}Photos for {{ day|date }}{% endblock %}

{% block content %}

<h1>Photos for {{ day|date }}</h1>

{% if object_list %}
    {% for photo in object_list %}
    <div class="gallery-photo">
        <a href="{{ photo.get_absolute_url }}"><img src="{{ photo.get_thumbnail_url }}" alt="{{ photo.title }}"/></a>
    </div>
    {% endfor %}
{% else %}
<p>No photos were found.</p>
{% endif %}
<p><a href="{% url pl-photo-list 1 %}">View all photographs</a></p>

{% endblock %}