{% extends "ldt/ldt_raw_base.html" %} {% load i18n %} {# form of creation of content #} {% load adminmedia %} {% block js_import %} {{ block.super }} {{ content_form.media.js }} {% endblock %} {% block css_import %} {{ block.super }} {{ content_form.media.css }} {% endblock %} {% block js_declaration %} {{ block.super }} {% endblock %} {% block body %}
{% if ldt_id %}{% trans "Update your project" %}{% else %}{% trans "Create your project" %}{% endif %}
{% csrf_token %}
{{form.title}} {% for error in form.title.errors %} {{ error }} {% endfor %} {{form.description}}
{% for content in contents %} {% endfor %}
{% if not ldt_id %} {% if contents|length > 1 %} {% endif %} {% endif %} {% trans "name" %}
{{ content.title }}
{% include "ldt/ldt_utils/partial/permissions.html" %}
{% if ldt_id %} {% else %} {% endif %}
{% endblock %}