comparison gpp/templates/forums/mod_split_topic.html @ 312:88b2b9cb8c1f

Fixing #142; cut over to the django.contrib.staticfiles app.
author Brian Neal <bgneal@gmail.com>
date Thu, 27 Jan 2011 02:56:10 +0000
parents 593fb6dbd449
children
comparison
equal deleted inserted replaced
311:b1c39788e511 312:88b2b9cb8c1f
23 {% for post in posts %} 23 {% for post in posts %}
24 <tr class="forum-post {% cycle 'odd' 'even' %}" id="post-{{ post.id }}"> 24 <tr class="forum-post {% cycle 'odd' 'even' %}" id="post-{{ post.id }}">
25 <td class="forum-post-author">{{ post.user.username }}</td> 25 <td class="forum-post-author">{{ post.user.username }}</td>
26 <td class="forum-post-body"> 26 <td class="forum-post-body">
27 <div class="forum-post-info quiet"> 27 <div class="forum-post-info quiet">
28 <a href="{{ post.get_absolute_url }}"><img src="{{ MEDIA_URL }}icons/link.png" alt="Link" title="Link to this post" /></a> 28 <a href="{{ post.get_absolute_url }}"><img src="{{ STATIC_URL }}icons/link.png" alt="Link" title="Link to this post" /></a>
29 Posted on {{ post.creation_date|date:"M d, Y H:i" }} from IP: {{ post.user_ip }} 29 Posted on {{ post.creation_date|date:"M d, Y H:i" }} from IP: {{ post.user_ip }}
30 </div> 30 </div>
31 <div class="forum-post-body-split"> 31 <div class="forum-post-body-split">
32 {{ post.html|safe }} 32 {{ post.html|safe }}
33 </div> 33 </div>