{% extends "base.html" %} {% block title %}{{ action|title }} {{ model_name }} - CREATESONLINE Admin{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ action|title }} {{ model_verbose_name|default:model_name }}

{% for field in fields %}
{% if field.type == 'text' %} {% elif field.type == 'textarea' %} {% elif field.type == 'number' %} {% elif field.type == 'email' %} {% elif field.type == 'password' %} {% elif field.type == 'date' %} {% elif field.type == 'datetime' %} {% elif field.type == 'checkbox' %}
{% elif field.type == 'select' %} {% elif field.type == 'file' %} {% if field.value %} Current file: View {% endif %} {% else %} {% endif %} {% if field.help_text and field.type != 'checkbox' %} {{ field.help_text }} {% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% if object_id %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}