{% extends "dashboard/base.html" %} {% load dash_extras %} {% block extra_head %}{{ form.media }}{% endblock %} {% block content %}
{% csrf_token %}
{% if form.non_field_errors %}
{% for e in form.non_field_errors %}

{{ e }}

{% endfor %}
{% endif %}
{% for field in form %} {% if field.field.widget.input_type == 'hidden' %} {{ field }} {% else %} {% field_widget_type field as wtype %} {% if wtype == 'Textarea' or wtype == 'SelectMultiple' or wtype == 'TinyMCE' %} {% include "dashboard/partials/field.html" with field=field wide=True %} {% else %} {% include "dashboard/partials/field.html" with field=field wide=False %} {% endif %} {% endif %} {% endfor %}
{% if cancel_url %} Batal {% endif %}
{% endblock %}