diff gpp/templates/downloads/download.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 32b1ca8e2940
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/templates/downloads/download.html	Mon Apr 06 02:43:12 2009 +0000
@@ -0,0 +1,24 @@
+{% load comment_tags %}
+{% get_comment_count for download as comment_count %}
+<dt>
+<a href="{% url downloads-download download.id %}">{{ download.title }}</a>
+</dt>
+<dd>
+{{ download.html|safe }}
+<table>
+<tr>
+    <th>Added By:</th>
+        <td><a href="{% url bio-view_profile download.user.username %}">{{ download.user.username }}</a></td>
+    <th>Date:</th><td>{{ download.date_added|date:"M d, Y" }}</td>
+    <th>Size:</th><td>{{ download.size }}</td>
+</tr>
+<tr>
+    <th>Category:</th><td>{{ download.category.title }}</td>
+    <th>Hits:</th><td>{{ download.hits }}</td>
+</tr>
+<tr>
+    <th>Rating:</th><td><div class="rating" id="rating-{{ download.id }}">{{ download.average_score|floatformat }}</div></td>
+    <th><a href="{% url downloads-comments download.id %}">Comments</a>:</th><td>{{ comment_count }}</td>
+</tr>
+</table>
+</dd>