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

{% 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' %}

{{ 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' %}

{{ form.company }} {{ form.company.help_text }}
{{ form.job }} {{ form.job.help_text }}
{% endblock %}