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 <p>{{ object.caption }}</h2>
9 <div style="clear: both;"> </div>
10 {% if prev_photo or next_photo%}
13 <a href="/photo/{{ object.album.slug }}/{{ prev_photo.id }}/">Previous</a>
16 <a href="/photo/{{ object.album.slug }}/{{ next_photo.id }}/">Next</a>