3527b0a75b
* New user model (used Django's AbstractBaseUser) * Renamed the app to users * removed person api See #861 Fixed #576 #478
15 lines
354 B
HTML
15 lines
354 B
HTML
{% extends "base.html" %}
|
||
|
||
{% load i18n %}
|
||
|
||
{% block title %}{% trans "Password settings" %} – {{ block.super }}{% endblock %}
|
||
|
||
{% block content %}
|
||
<h1>{% trans "Password settings" %}</h1>
|
||
|
||
<form action="" method="post">{% csrf_token %}
|
||
{% include "form.html" %}
|
||
{% include "formbuttons_save.html" %}
|
||
</form>
|
||
{% endblock %}
|