{% extends "wlprofile/base.html" %} {% load i18n %} {% load custom_date %} {% block title %} {% if not profile.deleted %} {{ profile.user.username }}'s {% else %} Deleted Users Profile {% endif %} - Profile {{ block.super }} {% endblock %} {% block profile %}class="active"{% endblock %} {% block content_header %}

{% if not profile.deleted %} {{ profile.user.username }}'s {% else %} Deleted User {% endif %} Profile

{% endblock %} {% block content_main %}
{% if not profile.deleted %}
{% if profile.avatar %} Avatar {% endif %}
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 }}
{% else %}

This user has deleted his data ...

{% endif %}
{% endblock %}