annotate gpp/templates/forums/display_post.html @ 94:806399f3b950

Forums: minor cosmetic tweaks mainly.
author Brian Neal <bgneal@gmail.com>
date Sun, 13 Sep 2009 05:01:52 +0000
parents 021492db4aad
children 93d9e74a471e
rev   line source
bgneal@89 1 {% load avatar_tags %}
bgneal@89 2 <tr class="forum-post {% cycle 'odd' 'even' %}">
bgneal@89 3 <td class="forum-post-author">
bgneal@89 4 <a name="p{{ post.id }}"></a>
bgneal@89 5 <a href="{% url bio-view_profile username=post.user.username %}">{{ post.user.username }}</a><br />
bgneal@89 6 {% avatar post.user %}
bgneal@89 7 </td>
bgneal@89 8 <td class="forum-post-body">
bgneal@89 9 <div class="forum-post-info quiet">
bgneal@89 10 <a href="{{ post.get_absolute_url }}"><img src="{{ MEDIA_URL }}icons/link.png" alt="Link" title="Link to this post" /></a>
bgneal@89 11 Posted on {{ post.creation_date|date:"M d, Y H:i" }}
bgneal@89 12 </div>
bgneal@89 13 <div class="forum-post-body">
bgneal@89 14 {{ post.html|safe }}
bgneal@89 15 </div>
bgneal@89 16 </td>
bgneal@89 17 </tr>