{% extends "base.html" %} {% block title %}{{ user.username }}{% endblock %} {% block content %}

{{ gettext('User Details') }}

{% if user.name %}
{{ gettext('Full Name') }}
{{ user.name }}
{% endif %} {% if user.date_joined %}
{{ gettext('Joined') }}
{{ user.date_joined|format_date() }}
{% endif %}
{% if projects %}

{{ gettext('Projects') }}

{% endif %}
{% endblock %}