settings.html
507 Bytes
{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans 'Settings' %}{% endblock %}
{% block text-content %}
<h1>{% trans 'User settings' %}</h1>
<form method="post" action="">
{{ form.as_p }}
{% csrf_token %}
<input type="hidden" name="next" value="{{ next }}"/>
<button type="submit">
Zapisz
</button>
</form>
<p>
<a href="{% url 'auth_password_change' %}">{% trans 'Change password' %}</a>
</p>
{% endblock %}