{% extends 'base.html.twig' %} {% block title %} {{ "title_creation"|trans }} {{ "of"|trans }} {{ ("documentType_" ~ type|capitalize)|trans }} {% endblock %} {% block body %}
{{ form(form) }}
{% if document.directory is defined and document.directory is not null %}

{% trans %}title_directory_linked{% endtrans %}


{% include '_cells/directoryCard.html.twig' with {'directory': document.directory} %} {% endif %} {% if document.user is defined and document.user is not null %}

{% trans %}title_user_linked{% endtrans %}


{% include '_cells/userInformations.html.twig' with {'user': document.user} %} {% endif %}
{% endblock %}