{% extends "admin/background_pages/base.html" %} {% load static bulb_static admin_extras compress %} {% block title %}Gestion{% endblock title %} {% block head %} {% if DEBUG %} {% compress css %} {% endcompress %} {% elif not DEBUG %} {% endif %} {% endblock head %} {% block administration_part_name %} > Gestion > {{ node_model_name }} > Nouvelle instance {% endblock administration_part_name %} {% block content %}

{% csrf_token %} {% for field_name, field_properties in admin_fields_dict.items %} {% if field_properties.type == "locked" %} {# Don't render locked fields. #} {% elif field_properties.type == "select" %} {% elif field_properties.type == "checkbox" %}
{% elif field_properties.type == "text" %} {% elif field_properties.type == "date" %}

/

/

{% elif field_properties.type == "time" %}

:

:

{% elif field_properties.type == "datetime" %}

/

/

 

:

:

{% elif field_properties.type == "file" %} {% elif field_properties.type == "password" %}

{% elif field_properties.type == "relationship" %} {% else %} {% endif %} {% if field_properties.description %} {% if not field_properties.type == "locked" %}
{{ field_properties.description }} {% endif %} {% endif %} {% if not field_properties.type == "locked" %}

{% endif %} {% endfor %}
{% endblock content %} {% block scripts %} {% if DEBUG %} {% elif not DEBUG %} {% endif %} {% endblock scripts %}