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

{{ data.docCode }}

{{ data.title }}

{% if is_granted('ROLE_GLOBAL_EDITOR') %}
[Edit this Document] {% if data.docGroupList | length > 0 %}
unable to delete, used in a doclist {% endif %} {% if data.docEventList | length > 0 %}
unable to delete, used in an event {% endif %} {% if data.docGroupList | length == 0 and data.docEventList | length == 0 %}
[Delete this Document] {% endif %}
{% endif %}
{% if data.authorText is defined and data.authorText != "" %} {% endif %} {% if data.summary is defined and data.summary != "" %} {% endif %} {% if data.doctypename is defined and data.doctypename != "" %} {% endif %} {% if data.idDoctype is defined and data.idDoctype == 9 %} {% endif %} {% if data.idDocstatus == 1 %} {% set status = "Draft" %} {% elseif data.idDocstatus == 2 %} {% set status = "Published" %} {% elseif data.idDocstatus == 3 %} {% set status = "Pending" %} {% endif %} {% if data.notes is defined and data.notes != "" %} {% endif %} {% if data.keywords is defined and data.keywords != "" %} {% endif %} {% if data.docGroupList | length > 0 %} {% endif %} {% if data.docEventList | length > 0 %} {% endif %}
Author(s) {{ data.authorText }}
Summary {{ data.summary | raw }}
Doc Type {{ data.doctypename }}
URL {{ data.url }}
Status {{ status }} {% if data.publishedOn is defined and data.publishedOn != "" %} on {{ data.publishedOn|date('d M Y') }} {% endif %}
Notes {{ data.notes | raw }}
Keywords {{ data.keywords }}
This document is in the list(s): {% for docGroupList in data.docGroupList %} {{ docGroupList.title }}
{% endfor %}
This document is used in the event(s): {% for docEventList in data.docEventList %} {{ docEventList.title }}
{% endfor %}
{% if 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 != "" %} {{ "Updated 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 %} Click here to go to Home {% endif %}
{% include "footer.html.twig" %} {% if data.idDoc is defined and data.idDoc is not null %} {% endif %} {% endblock %}