{% extends 'admin/master.html' %}
{% import 'admin/lib.html' as lib with context %}
{% block head %}
{{ super() }}
{{ lib.form_css() }}
{% endblock %}
{% block body %}
{% call lib.form_tag(form, action=url_post) %}
{{ lib.render_form_fields(form, form_opts={}) }}
{{ lib.render_form_buttons(return_url) }}
{% endcall %}
{% endblock %}
{% block tail %}
{{ super() }}
{{ lib.form_js() }}
{% endblock %}