1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-20 17:41:55 +02:00
Files
nk20/templates/member/profile_update.html
Pierre-antoine Comby b9c3ab5ea8 add a profile_update view
2020-02-03 19:28:51 +01:00

18 lines
373 B
HTML

<!doctype html>
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% load i18n static pretty_money django_tables2 %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form|crispy }}
{{ profile_form|crispy }}
<button class="btn btn-link" type="submit">
{% trans "Save Changes" %}
</button>
</form>
{% endblock %}