Mercurial > public > sg101
annotate gpp/templates/downloads/download_detail.html @ 390:e0523e17ea43
Fixing #175; add an auto-subscribe and auto-favorite forum topic feature. Added 2 flags to the user profile. Added 2 functions that are called on the post post-save signal that auto-favorite and auto-subscribe the post creator if they have requested this service.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 21 Mar 2011 00:39:52 +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 %} |