gremmie@1: {% extends 'bio/base.html' %} gremmie@1: {% load avatar_tags %} bgneal@29: {% load elsewhere_tags %} gremmie@1: {% block title %}User Profile for {{ subject.username }}{% endblock %} gremmie@1: {% block content %} gremmie@1:
{% avatar subject %}
gremmie@1:Full Name | {{ subject.get_full_name }} |
---|---|
Date Joined | {{ subject.date_joined|date:"F d, Y" }} |
Last Login | {{ subject.last_login|date:"F d, Y @ H:i" }} |
Active Member | {{ subject.is_active|yesno:"Yes,No" }} |
Staff Member | {{ subject.is_staff|yesno:"Yes,No" }} |
Location | {{ profile.location }} |
Occupation | {{ profile.occupation }} |
Birthday | {{ profile.birthday|date:"F d" }} |
Interests | {{ profile.interests }} |
{{ subject.email }} | |
ICQ | {{ profile.icq }} |
Profile | {{ profile.profile_html|safe }} |
Signature | {{ profile.signature_html|safe }} |
Elsewhere | {% elsewhere_links subject %} |
gremmie@1: gremmie@1: gremmie@1: Send a private message to {{ subject.username }} gremmie@1:
gremmie@1: {% endif %} gremmie@1: {% endif %} gremmie@1: {% endblock %}