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

{{ e }}

{% endfor %}
{% endif %}
{% for field in form %} {% field_widget_type field as wtype %} {% if wtype == 'Textarea' %} {% include "dashboard/partials/field.html" with field=field wide=True %} {% else %} {% include "dashboard/partials/field.html" with field=field wide=False %} {% endif %} {% endfor %}
Lihat Halaman
{% endblock %}