This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-12-10 15:58:35 +00:00
|
|
|
{% extends "user/base.html" %}
|
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block page %}
|
2020-06-30 19:23:37 +00:00
|
|
|
<div class="pf-c-card">
|
|
|
|
<div class="pf-c-card__header pf-c-title pf-m-md">
|
|
|
|
{% trans 'Update details' %}
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-card__body">
|
|
|
|
<form action="" method="post" class="pf-c-form pf-m-horizontal">
|
|
|
|
{% include 'partials/form_horizontal.html' with form=form %}
|
|
|
|
{% block beneath_form %}
|
|
|
|
{% endblock %}
|
|
|
|
<div class="pf-c-form__group pf-m-action">
|
|
|
|
<div class="pf-c-form__horizontal-group">
|
|
|
|
<div class="pf-c-form__actions">
|
|
|
|
<input class="pf-c-button pf-m-primary" type="submit" value="{% trans 'Update' %}" />
|
|
|
|
{% if unenrollment_enabled %}
|
|
|
|
<a class="pf-c-button pf-m-danger" href="{% url 'passbook_flows:default-unenrollment' %}?back={{ request.get_full_path }}">{% trans "Delete account" %}</a>
|
|
|
|
{% endif %}
|
2020-05-13 09:57:10 +00:00
|
|
|
</div>
|
2020-02-21 17:00:09 +00:00
|
|
|
</div>
|
2020-06-30 19:23:37 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2020-05-13 09:57:10 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-10 15:58:35 +00:00
|
|
|
{% endblock %}
|