{% extends 'uaccounts/base.html' %} {% load static %} {% block title %}Homepage{% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block content %}
{% if user.profile.avatar %} {% endif %}

{{ user }}

{# Put in one line to activate CSS :empty if none of the following are set. #}
{% if user.get_full_name %}

Name {{ user.get_full_name }}

{% endif %}{% if user.profile.gender != '-' %}

Gender {{ user.profile.get_gender_display|capfirst }}

{% endif %}{% if user.profile.date_of_birth %}

Date of birth {{ user.profile.date_of_birth|date:'j/n/Y' }}

{% endif %}{% if user.profile.status %}

Status {{ user.profile.status }}

{% endif %}
{% if user.profile.website %}

Website {{ user.profile.website }}

{% endif %} {% for email in secondary %} {% endfor %}

{% endblock %}