{% extends 'admin/base_admin.html' %} {% block admin_content %}
Delete

{% for f in form.html() %}
{% if f.input_type in ['checkbox'] %} {{f.html()|safe}} {% elif f.input_type == 'password' %} {{f.html(class='form-control', disabled=True)|safe}} {% else %} {{f.html(class='form-control')|safe}} {% endif %}
{% endfor %}

{% endblock admin_content %}