This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
montpellier-themes/templates/profiles/edit_profile.html

26 lines
555 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block extra-body-class %}narrow-page{% endblock %}
{% block content %}
<h2 class="single-title">Gestion du compte</h2>
<div id="welcome">
<h3>Modification de votre profil</h3>
</div>
<div class="right">
<form method="post">
{% csrf_token %}
<div>
{{ form.as_p }}
</div>
{% if form.instance and form.instance.id %}
<input type="submit" value="{% trans "Modify" %}"/>
{% else %}
<input type="submit" value="{% trans "Create" %}"/>
{% endif %}
</form>
</div>
<br class="clear" />
{% endblock %}