{% extends 'base.html.twig' %} {% block title %}Project{% endblock %} {% block body %}
{% include 'admin/header.html.twig' with {'title': 'Project', 'button_link': path('app_project_index')} %}
Id {{ project.id ? project.id : 'NULL' }}
Name {{ project.name ? project.name : 'NULL' }}
Visibility {{ project.visibility ? project.visibility.value : 'NULL' }}
Number of Views {{ project.numberOfViews ? project.numberOfViews : 'NULL' }}
Likes {{ project.likes ? project.likes : 'NULL' }}
Created At {{ project.createdAt ? project.createdAt|date('Y-m-d H:i:s') : 'NULL' }}
Technologies {% if project.technologies is not empty %} {% for technology in project.technologies %} {% endfor %} {% else %} {% endif %}
Name {{ technology.name ? technology.name : 'NULL' }}
NULL
Tags {% if project.tags is not empty %} {% for tag in project.tags %} {% endfor %} {% else %} {% endif %}
Name #{{ tag.name ? tag.name : 'NULL' }}
NULL
Public Informations {% if project.publicInformations %}
Description {{ project.publicInformations.description ? project.publicInformations.description : 'NULL' }}
Links {% if project.publicInformations.links is not empty %} {% for link in project.publicInformations.links %} {% endfor %} {% else %} {% endif %}
Name {{ link.name ? link.name : 'NULL' }}
URL {{ link.url ? link.url : 'NULL' }}
NULL
Medias {% if project.publicInformations.medias %} {% for media in project.publicInformations.medias %} {% endfor %} {% else %} {% endif %}
File {{ media.file ? media.file : 'NULL' }}
NULL
{% else %}

NULL

{% endif %}
Private Informations {% if project.privateInformations %}
Description {{ project.privateInformations.description ? project.privateInformations.description : 'NULL' }}
Links {% if project.privateInformations.links is not empty %} {% for link in project.privateInformations.links %} {% endfor %} {% else %} {% endif %}
Name {{ link.name ? link.name : 'NULL' }}
URL {{ link.url ? link.url : 'NULL' }}
NULL
Medias {% if project.privateInformations.medias is not empty %} {% for media in project.privateInformations.medias %} {% endfor %} {% else %} {% endif %}
File {{ media.file ? media.file : 'NULL' }}
NULL
{% else %}

NULL

{% endif %}
Edit {{ include('admin/project/_delete_form.html.twig') }}
{% endblock %}