{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Profile" %} {% endblock %} {% block content %}

{% trans "Profile" %}

{% trans "Your data" %}
{% translate "First name" %}
{{ userprofile.first_name }}
{% translate "Last name" %}
{{ userprofile.last_name }}
{% translate "E-Mail address" %}
{{ userprofile.email }}
{% translate "Date of birth" %}
{{ userprofile.date_of_birth|default_if_none:"" }}
{% translate "Phone number" %}
{{ userprofile.phone|default_if_none:"" }}
{% translate "Qualifications" %}
{% trans "Calendar feed" %}

{% translate "You can subscribe to a calendar containing all events that you participate in. Most calendars (e.g. Google Calendar) offer this feature. This allows you to see all events in your personal calendar. To activate this, you need to copy the address of the following link and subscribe to the URL." %}

{% trans "Your calendar" %}

{% endblock %}