Mercurial > public > sg101
view gpp/templates/downloads/commands/category_report.html @ 549:c4696a0cbd3f
Altered the open graph meta tags tag to generate tags for the home page
when None is supplied as a parameter. Updated the home page template to use it.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 15 Jan 2012 13:27:37 -0600 |
parents | 311c926dd218 |
children |
line wrap: on
line source
<!DOCTYPE html> <html lang="en"> <head> <title>Download Report: {{ category.title }}</title> </head> <body> <h1>Download Report: {{ category.title }}</h1> {% for dl in downloads %} <h2>{{ dl.title }}</h2> <p><small><em>Uploaded by {{ dl.user.username }}.</em></small></p> <div>{{ dl.html|safe }}</div> {% endfor %} </body> </html>