{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load manager_extras %} {% block header %} {{ form.media }} {% if custom_js %} {% endif %} {% endblock %} {% block title %}{{title}}{% endblock %} {% block content %}
{% csrf_token %} {{ form.non_field_errors }} {% for current_field in form_fields %} {% if current_field.name in select_lists %} {% yaml_form_field current_field "ym-fbox-select" %} {% else %} {% yaml_form_field current_field %} {% endif %} {% endfor %}
{% endblock %} {% block sidebar %}{{sidebar|safe}}{% endblock %}