{% set title = 'Settings' %} {% extends "base.html" %} {% block body %}

Settings

{{ form.csrf_token }}
First name:{{ user.first_name }}
Last name:{{ user.last_name }}
E-mail:{{ user.email }} {% if user.guinea_pig %}
Experimental features:yes {% endif %}
Notify by e-mail:{{ form.notify() }}
Notify on own posts:{{ form.notify_self() }}
Send attachments in notifications:{{ form.notify_att() }}
Show attachments inline:{{ form.inline_att() }}

{{ form.submit(class='ok', accesskey='s') }}

{% endblock %}