| 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 %}
| Name |
{{ technology.name ? technology.name : 'NULL' }} |
{% endfor %}
{% else %}
| NULL |
{% endif %}
|
| Tags |
{% if project.tags is not empty %}
{% for tag in project.tags %}
| Name |
#{{ tag.name ? tag.name : 'NULL' }} |
{% endfor %}
{% else %}
| NULL |
{% endif %}
|
| 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 %}
| Name |
{{ link.name ? link.name : 'NULL' }} |
| URL |
{{ link.url ? link.url : 'NULL' }} |
{% endfor %}
{% else %}
| NULL |
{% endif %}
|
| Medias |
{% if project.publicInformations.medias %}
{% for media in project.publicInformations.medias %}
| File |
{{ media.file ? media.file : 'NULL' }} |
{% endfor %}
{% else %}
| NULL |
{% endif %}
|
{% 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 %}
| Name |
{{ link.name ? link.name : 'NULL' }} |
| URL |
{{ link.url ? link.url : 'NULL' }} |
{% endfor %}
{% else %}
| NULL |
{% endif %}
|
| Medias |
{% if project.privateInformations.medias is not empty %}
{% for media in project.privateInformations.medias %}
| File |
{{ media.file ? media.file : 'NULL' }} |
{% endfor %}
{% else %}
| NULL |
{% endif %}
|
{% else %}
NULL
{% endif %}
|