{% extends 'Admin/base.html.twig' %} {% block title %} OceanExpert | {% if data.document is defined and data.doclist.idDoclist is defined %} Edit Document List {% else %} Add Document List {% endif %} {% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% include('navbarlogin.html.twig') %}
{% block sidebar %} {% include('Admin/adminSidebar.html.twig') %} {% endblock %}
{% block content %}

{% if data.doclist is defined and data.doclist.idDoclist is defined %} On this page, you can edit the document list. Simply make any changes required to the information below and click on 'Save'. {% else %} On this page, you can create a list of Documents. Simply fil out the form below. {% endif %}

Note: Fields marked with an asterisk (*) are mandatory. {% if data.doclist is not defined or data.doclist.idDoclist is not defined %} Please save the document list first and then add/upload the documents to the list. {% endif %}

{% if data.doclist is defined and data.doclist.idDoclist is defined %} {% set href = path('view_doclist',{idDoclist: data.doclist.idDoclist}) %} {% else %} {% set href = path('admin_dashboard') %} {% endif %} Cancel
{% if data.doclist is defined and data.doclist.idDoclist is defined %}
Documents
{% 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]
{% endif %}
{% endblock %} {% include "footer.html.twig" %} {% endblock %}