You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
896 B

{% extends "cash/base.html" %}
{% load url from future %}
{% load i18n %}
{% load bootstrap %}
{% block content %}
<h1>Einstellungen</h1>
<h2>{% trans "daily digest" %}</h2>
<p>{% blocktrans %}The digest will be sent nightly, as long as there were transaction made in the past 24 hours.{% endblocktrans %}
<form action="{% url 'usersettings' %}settings/" method="post">
{% csrf_token %}
{{ settings_form|bootstrap }}
<input type="submit" class="btn btn-default" value="{% trans "Save" %}" />
</form>
<hr/>
<h2>PIN ändern</h2>
<p>{% blocktrans %}The PIN is asked for after scanning the member's ID card. If this field is left blank, no PIN will be needed to log in.{% endblocktrans %}</p>
<form action="{% url 'usersettings' %}pin/" method="post">
{% csrf_token %}
{{ pin_form|bootstrap }}
<input type="submit" class="btn btn-default" value="{% trans "Save" %}" />
</form>
{% endblock %}