mirror of https://gitlab.crans.org/bde/nk20
23 lines
598 B
HTML
23 lines
598 B
HTML
{% extends "member/base.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block profile_content %}
|
|
<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 %} |