annotate gpp/templates/downloads/download_detail.html @ 348:d1b11096595b

Fix #168; when nailing a spammer, clear their profile text fields. Guard against topics and forums that don't exist when deleting posts in the signal handler. Make the forum stats template tag only display the latest active users.
author Brian Neal <bgneal@gmail.com>
date Wed, 02 Mar 2011 02:18:28 +0000
parents 88b2b9cb8c1f
children 41411066b16d
rev   line source
bgneal@23 1 {% extends 'base.html' %}
bgneal@23 2 {% load downloads_tags %}
bgneal@23 3 {% load comment_tags %}
bgneal@23 4 {% load script_tags %}
bgneal@23 5 {% block title %}Downloads Details{% endblock %}
bgneal@23 6 {% block custom_css %}
bgneal@312 7 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/comments.css" />
bgneal@312 8 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/downloads.css" />
bgneal@23 9 {% endblock %}
bgneal@23 10 {% block custom_js %}
bgneal@127 11 {% script_tags "markitup jquery-ui" %}
bgneal@312 12 <script type="text/javascript" src="{{ STATIC_URL }}js/comments.js"></script>
bgneal@312 13 <script type="text/javascript" src="{{ STATIC_URL }}js/rating.js"></script>
bgneal@23 14 {% endblock %}
bgneal@23 15 {% block content %}
bgneal@23 16 <h2>Downloads</h2>
bgneal@241 17 {% include 'downloads/navigation.html' %}
bgneal@23 18 <h3>Download Details For {{ download.title }}</h3>
bgneal@23 19
bgneal@23 20 <dl>
bgneal@23 21 {% include 'downloads/download.html' %}
bgneal@23 22 </dl>
bgneal@23 23
bgneal@23 24 {% get_comment_count for download as comment_count %}
bgneal@23 25 <p>This download has <span id="comment-count">{{ comment_count }}</span> comment{{ comment_count|pluralize }}.</p>
bgneal@23 26 <hr />
bgneal@23 27 {% render_comment_list download %}
bgneal@23 28 {% render_comment_form for download %}
bgneal@23 29 {% endblock %}