{% extends 'base.html.twig' %} {% block title %}Project {{ project.name }}{% endblock %} {% block javascripts %} {% endblock %} {% block body %} {% include('parts/header.html.twig') %} {{ project.name }} {{ project.likes }} {{ project.numberOfViews }} {% include('parts/media.html.twig') with { 'media': project.publicInformations.medias[0] | default(null) } %} {% if app.user and project.users.contains(app.user) %} {% if project.privateInformations %} Public Private {% endif %} {% endif %} {% if project.publicInformations %} {% if project.publicInformations.description %} Description {{ project.publicInformations.description }} {% for tag in project.tags %} {% include('parts/link.html.twig') with { 'text': tag.name } %} {% endfor %} Project uploaded the {{ project.createdAt|date('d/m/Y') }} {% endif %} {% if project.users|length > 0 %} Contributors {% for user in project.users %} {{ user.username }} {% endfor %} {% endif %} {% if project.publicInformations.medias|length > 0 %} Gallery {% for media in project.publicInformations.medias %} {% include('parts/media.html.twig') with { 'card': true } %} {% endfor %} {% endif %} {% if project.technologies|length > 0 %} Technologies {% for technology in project.technologies %} {% if technology.logo %} {% endif %} {{ technology.name }} {% endfor %} {% endif %} {% if project.publicInformations.links|length > 0 %} Useful Links {% for link in project.publicInformations.links %} {% include('parts/link.html.twig') with { 'text': link.name, 'url': link.url } %} {% endfor %} {% endif %} {% if project.publicInformations.comments|length > 0 %} Comments {% for comment in project.publicInformations.comments %} {% include('parts/comment.html.twig') %} {% endfor %} {% endif %} {% endif %} {% if app.user and project.users.contains(app.user) %} {% if project.privateInformations %} {% if project.privateInformations.description %} Documentation {{ project.privateInformations.description }} {% endif %} {% if project.privateInformations.medias|length > 0 %} Gallery {% for media in project.privateInformations.medias %} {% include('parts/media.html.twig') with { 'card': true } %} {% endfor %} {% endif %} {% if project.privateInformations.links|length > 0 %} Links {% for link in project.privateInformations.links %} {% include('parts/link.html.twig') with { 'text': link.name, 'url': link.url } %} {% endfor %} {% endif %} {% if project.privateInformations.comments|length > 0 %} Comments {% for comment in project.privateInformations.comments %} {% include('parts/comment.html.twig') %} {% endfor %} {% endif %} {% endif %} {% endif %} {% endblock %}
{{ project.publicInformations.description }}
Project uploaded the {{ project.createdAt|date('d/m/Y') }}
{{ project.privateInformations.description }}