comparison gpp/templates/bio/view_profile.html @ 390:e0523e17ea43

Fixing #175; add an auto-subscribe and auto-favorite forum topic feature. Added 2 flags to the user profile. Added 2 functions that are called on the post post-save signal that auto-favorite and auto-subscribe the post creator if they have requested this service.
author Brian Neal <bgneal@gmail.com>
date Mon, 21 Mar 2011 00:39:52 +0000
parents 88b2b9cb8c1f
children dc4638f37c22
comparison
equal deleted inserted replaced
389:3fa61786abf1 390:e0523e17ea43
52 <tr><th>Interests</th><td>{{ profile.interests }}</td></tr> 52 <tr><th>Interests</th><td>{{ profile.interests }}</td></tr>
53 {% endif %} 53 {% endif %}
54 {% if not profile.hide_email %} 54 {% if not profile.hide_email %}
55 <tr><th>Email</th><td>{{ subject.email }}</td></tr> 55 <tr><th>Email</th><td>{{ subject.email }}</td></tr>
56 {% endif %} 56 {% endif %}
57 {% if profile.icq %}
58 <tr><th>ICQ</th><td>{{ profile.icq }}</td></tr>
59 {% endif %}
60 {% if profile.profile_html %} 57 {% if profile.profile_html %}
61 <tr><th>Profile</th><td>{{ profile.profile_html|safe }}</td></tr> 58 <tr><th>Profile</th><td>{{ profile.profile_html|safe }}</td></tr>
62 {% endif %} 59 {% endif %}
63 {% if profile.signature_html %} 60 {% if profile.signature_html %}
64 <tr><th>Signature</th><td>{{ profile.signature_html|safe }}</td></tr> 61 <tr><th>Signature</th><td>{{ profile.signature_html|safe }}</td></tr>