Mercurial > public > sg101
comparison gpp/templates/forums/last_post_info.html @ 93:4c33e266db03
Forums: paginate the topic list inside a forum.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 13 Sep 2009 04:33:15 +0000 |
parents | 9e5e52556d5b |
children | 806399f3b950 |
comparison
equal
deleted
inserted
replaced
92:62eb9cbbcffc | 93:4c33e266db03 |
---|---|
1 {% if post %} | 1 {% if post %} |
2 {{ post.update_date|date:"M d, Y H:i"}}<br /> | 2 <a href="{{ post.get_absolute_url }}">{{ post.update_date|date:"M d, Y H:i"}}</a><br /> |
3 <a href="{% url bio-view_profile username=post.user.username %}" title="View profile for {{ post.user.username }}">{{ post.user.username }}</a> | 3 <a href="{% url bio-view_profile username=post.user.username %}" title="View profile for {{ post.user.username }}">{{ post.user.username }}</a> |
4 {% else %} | 4 {% else %} |
5 <i>No posts</i> | 5 <i>No posts</i> |
6 {% endif %} | 6 {% endif %} |