2020-02-03 18:25:05 +00:00
|
|
|
{% extends "base.html" %}
|
2020-02-21 10:17:14 +00:00
|
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% comment %}
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
{% endcomment %}
|
2020-02-03 18:25:05 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form method="post">
|
2020-02-21 10:17:14 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
{{ profile_form|crispy }}
|
|
|
|
<button class="btn btn-primary" type="submit">
|
|
|
|
{% trans "Save Changes" %}
|
|
|
|
</button>
|
|
|
|
</form>
|
2020-02-03 18:25:05 +00:00
|
|
|
{% endblock %}
|