{% extends 'admin/master.html' %} {% import 'admin/lib.html' as lib with context %} {% block body %} {{ super() }}
{% if current_user.is_authenticated %} {% block webadmin_security_settings %}
Security Webadmin
{% if conf_ok %} {{ lib.render_form(form, "") }} {% else %} To enable this module please add following line to default.conf:
                        [config]
                        webadmin_conf = config/webadmin.conf
                    
And restart application
{% endif %}
{% endblock webadmin_security_settings %} {% block extra_security_settings %} {% endblock extra_security_settings %} {% else %} Not logged in {% endif %}
{% endblock body %}