1 {% extends "base.html" %}
5 <div class="single_photo">
6 <a href="{{ object.image.url }}"><img src='{{ object.image.url|thumbnail:"width=500" }}' alt="{{ object.caption }}" /></a>
7 {% if object.caption %}
8 <p>{{ object.caption }}</p>
11 <div style="clear: both;"> </div>
12 {% if prev_photo or next_photo%}
15 <a href="/photo/{{ object.album.slug }}/{{ prev_photo.id }}/">Previous</a>
18 <a href="/photo/{{ object.album.slug }}/{{ next_photo.id }}/">Next</a>