canaille-globuzma/canaille/templates/profile.html

173 lines
7 KiB
HTML
Raw Normal View History

2020-10-20 09:44:45 +00:00
{% extends 'base.html' %}
{% import 'fomanticui.j2' as sui %}
2020-10-31 17:22:24 +00:00
{% import 'flask.j2' as flask %}
2020-10-20 09:44:45 +00:00
2020-11-01 10:33:56 +00:00
{% block script %}
<script src="/static/js/profile.js"></script>
{% endblock %}
2020-10-20 09:44:45 +00:00
{% block content %}
{% if self_deletion or (user.moderator and edited_user) %}
2020-11-01 10:33:56 +00:00
<div class="ui basic modal">
<div class="ui icon header">
<i class="user minus icon"></i>
{% trans %}Account deletion{% endtrans %}
2020-11-01 10:33:56 +00:00
</div>
<div class="content">
<p>
{% if user.uid != edited_user.uid %}
{{ _("Are you sure you want to delete this user? This action is unrevokable and all the data about this user will be removed.") }}
{% else %}
{{ _("Are you sure you want to delete your account? This action is unrevokable and all your data will be removed forever.") }}
{% endif %}
</p>
2020-11-01 10:33:56 +00:00
</div>
<div class="actions">
<div class="ui inverted cancel button">{% trans %}Cancel{% endtrans %}</div>
<div class="ui inverted red approve button">{% trans %}Delete{% endtrans %}</div>
</div>
</div>
{% endif %}
2020-10-20 09:44:45 +00:00
<div class="ui clearing segment">
<h2 class="ui center aligned header">
<div class="content">
2020-11-01 10:33:56 +00:00
{% if not edited_user %}
{% trans %}User creation{% endtrans %}
{% elif user.uid == edited_user.uid %}
{% trans %}My profile{% endtrans %}
{% else %}
{% trans %}User profile edition{% endtrans %}
{% endif %}
2020-10-20 09:44:45 +00:00
</div>
<div class="sub header">
2020-11-01 10:33:56 +00:00
{% if not edited_user %}
{% trans %}Create a new user account{% endtrans %}
{% elif user.uid == edited_user.uid %}
{% trans %}Edit your personal informations{% endtrans %}
{% else %}
{% trans %}Edit informations about an user{% endtrans %}
{% endif %}
2020-10-20 09:44:45 +00:00
</div>
</h2>
{{ flask.messages() }}
2020-11-01 10:33:56 +00:00
<form method="POST"
id="{{ form.__class__.__name__|lower }}"
action="{{ request.url }}"
role="form"
enctype="multipart/form-data"
class="ui form info{% if user.moderator and edited_user and not edited_user.has_password() %} warning{% endif %}"
2020-11-01 10:33:56 +00:00
>
{#{ sui.render_field(form.csrf_token) }#}
2020-11-02 10:39:00 +00:00
<h4 class="ui dividing header">{% trans %}Personal information{% endtrans %}</h4>
<div class="two fields">
{% if "givenName" in form %}
{{ sui.render_field(form.givenName) }}
{% endif %}
{% if "sn" in form %}
{{ sui.render_field(form.sn) }}
{% endif %}
2020-11-02 10:39:00 +00:00
</div>
{% if "mail" in form %}
{{ sui.render_field(form.mail) }}
{% endif %}
{% if "telephoneNumber" in form %}
{{ sui.render_field(form.telephoneNumber) }}
{% endif %}
{% if "employeeNumber" in form %}
{{ sui.render_field(form.employeeNumber) }}
{% endif %}
2020-11-02 10:39:00 +00:00
<h4 class="ui dividing header">{% trans %}Account information{% endtrans %}</h4>
{% if "uid" in form %}
{{ sui.render_field(form.uid) }}
{% endif %}
2021-01-22 17:26:53 +00:00
<div class="two fields">
{% if "password1" in form %}
{{ sui.render_field(form.password1) }}
{{ sui.render_field(form.password2) }}
{% endif %}
</div>
{% if not edited_user %}
2021-01-22 17:26:53 +00:00
<div class="ui message info">
<div class="header">
{% trans %}User password is not mandatory{% endtrans %}
</div>
<p>{% trans %}The user password can be set:{% endtrans %}</p>
<ul class="ui list">
<li>{% trans %}by filling this form;{% endtrans %}</li>
<li>{% trans %}by sending the user a password initialization mail, after the account creation;{% endtrans %}</li>
<li>{% trans %}or simply waiting for the user to sign-in a first time, and then receive a password initialization mail.{% endtrans %}</li>
</ul>
</div>
2021-01-22 17:26:53 +00:00
{% elif user.moderator and not edited_user.has_password() %}
2021-01-22 17:26:53 +00:00
<div class="ui message warning">
{% if request.method == "POST" and request.form.action == "password-initialization-mail" %}
<button type="submit" name="action" value="password-initialization-mail" class="ui right floated button">
{% trans %}Send again{% endtrans %}
</button>
{% else %}
<button type="submit" name="action" value="password-initialization-mail" class="ui right floated primary button">
2021-01-22 17:26:53 +00:00
{% trans %}Send email{% endtrans %}
</button>
{% endif %}
<div class="header">
{% trans %}This user does not have a password yet{% endtrans %}
</div>
<p>{% trans %}You can solve this by:{% endtrans %}</p>
<ul class="ui list">
<li>{% trans %}setting a password using this form;{% endtrans %}</li>
<li>{% trans %}sending the user a password initialization mail, by clicking this button;{% endtrans %}</li>
<li>{% trans %}or simply waiting for the user to sign-in a first time, and then receive a password initialization mail.{% endtrans %}</li>
</ul>
</div>
2021-01-22 17:26:53 +00:00
{% elif user.moderator and edited_user.uid != user.uid and edited_user.has_password() %}
<div class="ui message info">
<button type="submit" name="action" value="password-reset-mail" class="ui right floated button">
{% if request.method == "POST" and request.form.action == "password-reset-mail" %}
{% trans %}Send again{% endtrans %}
{% else %}
{% trans %}Send mail{% endtrans %}
{% endif %}
2021-01-22 17:26:53 +00:00
</button>
<div class="header">
{% trans %}Password reset{% endtrans %}
</div>
<p>{% trans %}If the user has forgotten his password, you can send him a password reset email by clicking this button.{% endtrans %}</p>
2020-11-02 10:39:00 +00:00
</div>
2020-11-01 10:33:56 +00:00
2021-01-22 17:26:53 +00:00
{% endif %}
2020-11-01 10:33:56 +00:00
<button type="submit" class="ui right floated primary button" name="action" value="edit" id="edit">
{{ _("Submit") }}
2020-11-01 10:33:56 +00:00
</button>
2020-12-27 17:21:31 +00:00
{% if user.admin and edited_user and user.uid != edited_user.uid %}
<a href="{{ url_for('canaille.account.impersonate', username=edited_user.uid[0]) }}" class="ui right floated basic button" name="action" value="impersonate" id="impersonate">
{{ _("Impersonate") }}
</a>
{% endif %}
{% if user.moderator and edited_user or self_deletion %}
2020-11-25 15:06:28 +00:00
<button type="submit" class="ui right floated basic negative button confirm" name="action" value="delete" id="delete">
2020-12-31 11:41:38 +00:00
{% if user.uid != edited_user.uid %}
{{ _("Delete the user") }}
{% else %}
{{ _("Delete my account") }}
{% endif %}
2020-11-01 10:33:56 +00:00
</button>
{% endif %}
</form>
2020-10-20 09:44:45 +00:00
</div>
{% endblock %}