annotate gpp/templates/forums/last_post_info.html @ 88:3abf0b045749

Updates to base template. Added a link to forums. Display username in header if logged in.
author Brian Neal <bgneal@gmail.com>
date Sat, 12 Sep 2009 18:51:55 +0000
parents 9e5e52556d5b
children 4c33e266db03
rev   line source
bgneal@84 1 {% if post %}
bgneal@84 2 {{ post.update_date|date:"M d, Y H:i"}}<br />
bgneal@84 3 <a href="{% url bio-view_profile username=post.user.username %}" title="View profile for {{ post.user.username }}">{{ post.user.username }}</a>
bgneal@84 4 {% else %}
bgneal@84 5 <i>No posts</i>
bgneal@84 6 {% endif %}