Mercurial > public > sg101
comparison gpp/templates/downloads/download_summary.html @ 1:dbd703f7d63a
Initial import of sg101 stuff from private repository.
author | gremmie |
---|---|
date | Mon, 06 Apr 2009 02:43:12 +0000 |
parents | |
children | b6263ac72052 |
comparison
equal
deleted
inserted
replaced
0:900ba3c7b765 | 1:dbd703f7d63a |
---|---|
1 {% extends 'base.html' %} | |
2 {% load downloads_tags %} | |
3 {% block title %}{{ title }}{% endblock %} | |
4 {% block custom_css %} | |
5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/downloads.css" /> | |
6 {% endblock %} | |
7 {% block custom_js %} | |
8 <script type="text/javascript" src="{{ MEDIA_URL }}js/jquery-1.2.6.min.js"></script> | |
9 <script type="text/javascript" src="{{ MEDIA_URL }}js/downloads/rating.js"></script> | |
10 {% endblock %} | |
11 {% block content %} | |
12 <h2>Downloads</h2> | |
13 {% downloads_navigation %} | |
14 <h3>{{ title }}</h3> | |
15 | |
16 {% if downloads %} | |
17 <dl> | |
18 {% for download in downloads %} | |
19 {% include 'downloads/download.html' %} | |
20 {% endfor %} | |
21 </dl> | |
22 {% else %} | |
23 <p>No downloads available at this time.</p> | |
24 {% endif %} | |
25 {% endblock %} |