{% 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 %} {% 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 %} Profile picture of {{ user.username }} {{ 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 %} {{technology.name}} 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 %} {% endif %} {% endif %}
{% endblock %}