Add clarifying comment to use of memcache.incr(name) in python sharded counter example
[gae-samples.git] / image_sharing / show_image.html
blobe1fef38870bba98d99198795f787e6484d53abab
1 {% extends "base.html" %}
2 {% block title %}Viewing {{pic.title}}{% endblock %}
3 {% block content %}
4 <div class='pictitle'>
5 {{pic.title}}
6 </div>
7 <div class='picsubmitter'>
8 {{pic.submitter}}
9 </div>
10 <div class='picview'>
11 <img src='/image/{{image_key}}'>
12 </div>
13 <div class='piccaption'>
14 {{pic.caption}}
15 </div>
16 <div class='pictags'>
17 Tags:
18 {% for tag in pic.tags %}
19 <a href='/search?q={{tag}}'>{{tag}}</a>{% if not forloop.last %},{% endif %}
20 {% endfor %}
21 </div>
22 <a href='/album/{{pic.album.key}}'>Back to album</a>
23 {% endblock %}