{% extends "base.html" %} {% block title %} {% trans %}User settings{% endtrans %} {% endblock %} {% block subtitle %} {{ user }} {% endblock %} {% block content %}
{{ form.hidden_tag() }} {% call macros.box(title=_("General settings")) %} {{ macros.form_field(form.displayed_name) }} {% endcall %} {% call macros.box(title=_("Antispam")) %} {{ macros.form_field(form.spam_enabled) }} {{ macros.form_field(form.spam_threshold, step=1, max=100, prepend=''+form.spam_threshold.data.__str__()+' / 100', oninput='$("#threshold").text(this.value);') }} {% endcall %} {{ macros.form_field(form.submit) }}
{% endblock %}