{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Profile" %}{% endblock %} {% block page-title %} {% trans "Profile for" %} {{ user.username }} {% endblock %} {% block content %}

{% trans "Account information" %}

{{ form.first_name }}
{{ form.last_name }}
{{ form.email }}
{{ form.birthday }} {{ form.birthday.help_text }}

{% trans "Address" %}

{{ form.street }} {{ form.street.help_text }}
{{ form.zip_code }} {{ form.zip_code.help_text }}
{{ form.city }} {{ form.city.help_text }}
{{ form.country }} {{ form.country.help_text }}

{% trans "Communication data" %}

{{ form.phone_landline }} {{ form.phone_landline.help_text }}
{{ form.phone_mobile }} {{ form.phone_mobile.help_text }}
{{ form.fax }} {{ form.fax.help_text }}
{{ form.url }} {{ form.url.help_text }}

{% trans "Company information" %}

{% if user.get_profile.company %} {{ user.get_profile.company }} {% else %} {% trans "None" %} {% endif %}
{{ form.job }} {{ form.job.help_text }}
{% endblock %}