2020-08-25 13:39:57 +00:00
|
|
|
{% extends "member/base.html" %}
|
2020-02-21 10:17:14 +00:00
|
|
|
{% comment %}
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
{% endcomment %}
|
2020-08-25 14:30:02 +00:00
|
|
|
{% load i18n crispy_forms_tags %}
|
2020-02-03 18:25:05 +00:00
|
|
|
|
2020-08-25 13:39:57 +00:00
|
|
|
{% block profile_content %}
|
2020-08-23 12:21:31 +00:00
|
|
|
<div class="card bg-light">
|
|
|
|
<h3 class="card-header text-center">
|
|
|
|
{{ title }}
|
|
|
|
</h3>
|
|
|
|
<div class="card-body">
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form | crispy }}
|
|
|
|
{{ profile_form | crispy }}
|
|
|
|
<button class="btn btn-primary" type="submit">
|
|
|
|
{% trans "Save Changes" %}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|