# HG changeset patch # User Brian Neal # Date 1256611561 0 # Node ID 98d658afd4bf0e8d11f8e5eef96bb0154b8d68f1 # Parent f8f4514b806a17f7154a2397d0a2fc228aa42448 Forums: display signature on posts. Display icons for PM and email (if not hidden) on each post. diff -r f8f4514b806a -r 98d658afd4bf gpp/templates/forums/display_post.html --- a/gpp/templates/forums/display_post.html Sun Oct 25 21:55:28 2009 +0000 +++ b/gpp/templates/forums/display_post.html Tue Oct 27 02:46:01 2009 +0000 @@ -7,7 +7,17 @@ {% avatar post.user %} Joined: {{ post.user.date_joined|date:"M d, Y" }}
Posts: {{ post.user_profile.forum_post_count }}
+ {% if post.user_profile.location %} Location: {{ post.user_profile.location }}
+ {% endif %} + {% if user.is_authenticated %} +

+ + PM + {% if not post.user_profile.hide_email %} + Email{% endif %} +

+ {% endif %}
@@ -18,6 +28,9 @@
{{ post.html|safe }} + {% if post.user_profile.signature_html %} + —{{ post.user_profile.signature_html|safe }} + {% endif %} {% if post.has_been_edited %}

Last edited: {{ post.update_date|date:"M d, Y H:i:s" }}

{% endif %}