summaryrefslogtreecommitdiff
path: root/templates/photologue/gallery_detail.html
blob: dc2d57736206250d3cc5b00cd5ee78b3eaabb450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "photologue/root.html" %}

{% block title %}{{ object.title }}{% endblock %}

{% block page-header %}{{ object.title }}{% endblock %}
{% block content %}

<h2>Originally published {{ object.date_added|date:"l, F jS, Y" }}</h2>
{% if object.description %}<p>{{ object.description }}</p>{% endif %}
<div class="photo-gallery">
    {% for photo in object.public %}
    <div class="gallery-photo">
        <a href="{{ photo.get_absolute_url }}"><img src="{{ photo.get_thumbnail_url }}" alt="{{ photo.title }}"/></a>
    </div>
    {% endfor %}
</div>
<p><a href="{% url pl-gallery-list 1 %}">View all galleries</a></p>

{% endblock %}