{# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for #} {# more information about the licensing of this file. #} {% extends "layout.html" %} {% block title %}{{ _("My profile") }}{% endblock %} {% block column %} {{ template_helper.call('preferences_menu',current='profile') | safe }} {% endblock %} {% block navbar %} {% endblock %} {% block content %}

{{ _("My profile") }}

{% if error %}
{{msg}}
{% elif msg %}
{{msg}}
{% endif %} {% if not user_manager.session_username() %}
{{_("Please set a new username")}}
{% endif %} {% if is_tos_defined and not user_manager.session_tos_signed() %}
{{_("Please accept the Terms of Service and Data Privacy")}}
{% endif %}
{% if allow_registration %}
{% endif %} {%if is_tos_defined %}
{{ _("I have read the {a1start}Terms of service{a1end} and the {a2start}Privacy policy{a2end}.").format(a1start='', a1end='', a2start='', a2end='') | safe }}
{% endif %}

{% endblock %}