2020-08-25 15:39:57 +02:00
|
|
|
{% extends "member/base.html" %}
|
2020-02-21 11:17:14 +01:00
|
|
|
{% comment %}
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
{% endcomment %}
|
2020-08-25 16:30:02 +02:00
|
|
|
{% load i18n crispy_forms_tags %}
|
2020-02-03 19:25:05 +01:00
|
|
|
|
2020-08-25 15:39:57 +02:00
|
|
|
{% block profile_content %}
|
2020-08-23 14:21:31 +02: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 %}
|