{% extends "index.html" %} {% from "macros.html" import text_input, dropdown, submit %} {% block page %}
{{ text_input('Static path', 'static_path', static_path) }} {{ text_input('Templates path', 'templates_path', templates_path) }} {{ dropdown('Default template', 'default_theme', available_themes, default_theme) }} {{ dropdown('Default locale', 'default_locale', locales, default_locale) }} {{ submit() }}
{% endblock %}