Mercurial > public > sg101
annotate gpp/templates/downloads/download_summary.html @ 6:b6263ac72052
Use DRY principle to manage third party javascript libraries. Created script_tags template tags to generate the correct link and script tags for 3rd party libraries. The settings.py file is the only place where the full path name is specified.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 11 Apr 2009 22:50:56 +0000 |
parents | dbd703f7d63a |
children | f408971657b9 |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'base.html' %} |
gremmie@1 | 2 {% load downloads_tags %} |
bgneal@6 | 3 {% load script_tags %} |
gremmie@1 | 4 {% block title %}{{ title }}{% endblock %} |
gremmie@1 | 5 {% block custom_css %} |
gremmie@1 | 6 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/downloads.css" /> |
gremmie@1 | 7 {% endblock %} |
gremmie@1 | 8 {% block custom_js %} |
bgneal@6 | 9 {% script_tags "jquery" %} |
gremmie@1 | 10 <script type="text/javascript" src="{{ MEDIA_URL }}js/downloads/rating.js"></script> |
gremmie@1 | 11 {% endblock %} |
gremmie@1 | 12 {% block content %} |
gremmie@1 | 13 <h2>Downloads</h2> |
gremmie@1 | 14 {% downloads_navigation %} |
gremmie@1 | 15 <h3>{{ title }}</h3> |
gremmie@1 | 16 |
gremmie@1 | 17 {% if downloads %} |
gremmie@1 | 18 <dl> |
gremmie@1 | 19 {% for download in downloads %} |
gremmie@1 | 20 {% include 'downloads/download.html' %} |
gremmie@1 | 21 {% endfor %} |
gremmie@1 | 22 </dl> |
gremmie@1 | 23 {% else %} |
gremmie@1 | 24 <p>No downloads available at this time.</p> |
gremmie@1 | 25 {% endif %} |
gremmie@1 | 26 {% endblock %} |