{% 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 }}
Notify by e-mail:{{ form.notify() }}
Notify on own posts:{{ form.notify_self() }}
Show PDF attachments inline:{{ form.inline_att() }}

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

{% endblock %}