{% extends "base.html" %} {% block core %}

{{ user.first_name }} {{ user.last_name }} ({{ user.username }})

Participations

{{ xsrf_form_html|safe }} Add a new participation:
{% if participations == [] %}

No participations found.

{% else %}
{{ xsrf_form_html|safe }} Edit selected participation: {% for p in participations %} {% endfor %}
Participation Hidden? Unrestricted? Contest Contest description
{{ p.user.username }} {{ p.hidden }} {{ p.unrestricted }} {{ p.contest.name }} {{ p.contest.description }}
{% endif %}

General Information

{{ xsrf_form_html|safe }}
First name
Last name
Username
Password {% set hashed_password = user.password %} {% include "fragments/hashed_password_form.html" %}
E-mail
Timezone
Preferred languages
{{ xsrf_form_html|safe }}
{% endblock core %}