{% extends "cfp/event/base.html" %} {% load bootstrap4 %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Your Profile" %} :: {% endblock %} {% block content %}

{% trans "Your Profile" %}

{% trans "This data will be displayed publicly if your talk is accepted. It is also visible to reviewers." %}

{% csrf_token %} {% bootstrap_form_errors profile_form %}
{% bootstrap_field profile_form.get_gravatar layout='event-inline' %}
{% bootstrap_field profile_form.avatar layout='inline' %}
{% bootstrap_field profile_form.name layout='event' %} {% if profile_form.biography %}{% bootstrap_field profile_form.biography layout='event' %}{% endif %} {% bootstrap_field profile_form.availabilities layout='event' %}
{% if questions_exist %}

{% trans "We have some questions" %}

{% csrf_token %} {% bootstrap_form questions_form layout='event' %}
{% endif %}

{% trans "Your Account" %}

{% trans "You can change your log in data here." %}

{% csrf_token %} {{ login_form.media }} {% bootstrap_field login_form.old_password layout='event' %} {% bootstrap_field login_form.email layout='event' %} {% bootstrap_field login_form.password layout='event' %} {% bootstrap_field login_form.password_repeat layout='event' %}
 

{% trans "Account deletion" %}

{% csrf_token %}
{% trans "You can delete your account here – all names, emails, and other personal information will be overwritten. This action is irreversible." %}
{% endblock %}