{% extends "wlprofile/base.html" %}
{% load i18n %}
{% load custom_date %}
{% block title %}
{{ profile.user.username }}'s Profile - {{ block.super }}
{% endblock %}
{% block content %}
{% ifequal user profile.user %}
Edit Profile
{% endifequal %}
{{ profile.user.username }}'s Profile
{% if profile.avatar %}
{% endif %}
|
{% ifnotequal user profile.user %}
{% endifnotequal %}
|
Joined: |
{{ profile.user.date_joined|custom_date:user|title }} |
Forum Posts: |
{{ profile.post_count }} |
Website: |
{{ profile.site }} |
Location: |
{{ profile.location }} |
Jabber: |
{{ profile.jabber }} |
ICQ: |
{{ profile.icq }} |
MSN: |
{{ profile.msn }} |
AIM: |
{{ profile.aim }} |
Yahoo: |
{{ profile.yahoo }} |
Signature: |
{{ profile.signature|urlize|linebreaks }} |
{% ifequal user profile.user %}
Email: |
{{ profile.user.email }} |
{% endifequal %}
{% comment %}
{% endcomment %}
{% endblock %}