annotate gpp/templates/downloads/download_summary.html @ 7:ca66189c7c44

Added tiny_mce to the GPP_THIRD_PARTY_JS setting. Updated code to use it.
author Brian Neal <bgneal@gmail.com>
date Sun, 12 Apr 2009 00:31:36 +0000
parents b6263ac72052
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 %}