Mercurial > public > sg101
annotate gpp/templates/downloads/commands/category_report.html @ 573:bcc4e8cf841b
For Django 1.4, update to newer versions of cache_page usage.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 02 May 2012 21:00:12 -0500 |
parents | 311c926dd218 |
children |
rev | line source |
---|---|
bgneal@527 | 1 <!DOCTYPE html> |
bgneal@527 | 2 <html lang="en"> |
bgneal@527 | 3 <head> |
bgneal@527 | 4 <title>Download Report: {{ category.title }}</title> |
bgneal@527 | 5 </head> |
bgneal@527 | 6 <body> |
bgneal@527 | 7 <h1>Download Report: {{ category.title }}</h1> |
bgneal@527 | 8 {% for dl in downloads %} |
bgneal@527 | 9 <h2>{{ dl.title }}</h2> |
bgneal@528 | 10 <p><small><em>Uploaded by {{ dl.user.username }}.</em></small></p> |
bgneal@527 | 11 <div>{{ dl.html|safe }}</div> |
bgneal@527 | 12 {% endfor %} |
bgneal@527 | 13 </body> |
bgneal@527 | 14 </html> |