comparison gpp/templates/forums/display_post.html @ 89:021492db4aad

Forums: Got the reply function working.
author Brian Neal <bgneal@gmail.com>
date Sat, 12 Sep 2009 21:29:31 +0000
parents
children 93d9e74a471e
comparison
equal deleted inserted replaced
88:3abf0b045749 89:021492db4aad
1 {% load avatar_tags %}
2 <tr class="forum-post {% cycle 'odd' 'even' %}">
3 <td class="forum-post-author">
4 <a name="p{{ post.id }}"></a>
5 <a href="{% url bio-view_profile username=post.user.username %}">{{ post.user.username }}</a><br />
6 {% avatar post.user %}
7 </td>
8 <td class="forum-post-body">
9 <div class="forum-post-info quiet">
10 <a href="{{ post.get_absolute_url }}"><img src="{{ MEDIA_URL }}icons/link.png" alt="Link" title="Link to this post" /></a>
11 Posted on {{ post.creation_date|date:"M d, Y H:i" }}
12 </div>
13 <div class="forum-post-body">
14 {{ post.html|safe }}
15 </div>
16 </td>
17 </tr>