{% extends 'base.html.twig' %} {% block title %} OceanExpert | Document {% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% include('navbarlogin.html.twig') %}
{% if data.doclist.idDoclist is defined and data.doclist.idDoclist is not null %}

{{ data.doclist.title }}

{% if is_granted('ROLE_GLOBAL_EDITOR') %} {% endif %}
{{ data.doclist.description | raw }}
{% if data.documents is defined and data.documents | length > 0 %} {% set i = 1 %} {% for document in data.documents %} {% if is_granted('ROLE_GLOBAL_EDITOR') %} {% endif %} {% endfor %} {% endif %}
{% if data.doclist.orderBy in [5,6] %} {{ document.docCode }} {% if document.idDocstatus == 1 %}
Draft
{% elseif document.idDocstatus == 3 %}
Pending
{% endif %} {% else %} {{ i }} {% set i = i + 1 %} {% endif %}
{% if document.docCode is defined and document.docCode != "" and data.doclist.orderBy not in [5,6] %} {{ document.docCode }} : {% endif %} {% if document.title is defined and document.title != "" %} {{ document.title }} {% endif %} {% if document.publishedOn is defined and document.publishedOn != "" %} ({{ document.publishedOn | date('d/m/Y') }}) {% endif %} {% if document.summary is defined and document.summary != "" %}
{{ document.summary | truncate(50,'...')}} {% endif %}
[Remove from List]
{% if data.docFiles is defined and data.docFiles | length > 0 %}

{% if data.documentGroup is defined and data.documentGroup | length >0 %}
Group(s): {% for documentGroup in data.documentGroup %} {{ documentGroup.groupname }} {% endfor %}
{% endif %}
{% if data.createdAt is defined and data.createdAt != "" %} {{ "Created at " ~ data.createdAt | date("H:i") ~ ' on ' ~ data.createdAt | date("d M Y") }} {% endif %} {% if data.createdBy is defined and data.createdBy != "" %} {{ ' by ' ~ data.createdBy }} {% endif %}
{% if data.updatedAt is defined and data.updatedAt != "" %} {{ "Created at " ~ data.updatedAt | date("H:i") ~ ' on ' ~ data.updatedAt | date("d M Y") }} {% endif %} {% if data.updatedBy is defined and data.updatedBy != "" %} {{ ' by ' ~ data.updatedBy }} {% endif %}
{% if is_granted('ROLE_GLOBAL_EDITOR') %} {% endif %} {% else %} Cick here to go to Home {% endif %}
{% include "footer.html.twig" %} {% endblock %}