{% extends 'Admin/base.html.twig' %} {% block title %} OceanExpert | {{ documentData.customParameters.title }} {% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% include('navbarlogin.html.twig') %}
{% block content %}

{{ documentData.customParameters.title }}

Displaying {{ documentData.getPaginationData.firstItemNumber }} – {{ documentData.getPaginationData.lastItemNumber }} results of {{ documentData.getTotalItemCount }}.

Below you can see the list of all documents that are stored in OceanExpert.

To find the document(s) you are looking for you have these options:

  • You can browse through the list (sort the documents by clicking on ID, Title or Date in the table header or footer).
  • Use one of the Document Lists of IOC documents for a particular IOC programme (e.g. IODE Session reports ).
  • The search box at the top right of this page gives you the possibility to search for documents that contain a certain word in their title.
    Note that this is a very simple search and you need to enter complete words that appear as such in the title
    (e.g. 'national contact manual' will work, 'national manual' will not work for a document with the title 'IOC National Contact Manual (National Focal Points contact list)' ).
  • For more advanced search queries, you can use the Search page that enables you to do a more elaborated search for availlable documents (e.g. using boolean operators "AND" or "OR").
{% for document in documentData.items %} {% endfor %}
{{ knp_pagination_sortable(documentData, 'ID', 'd.idDoc') }} {{ knp_pagination_sortable(documentData, 'Title', 'd.title') }} {{ knp_pagination_sortable(documentData, 'Date', 'd.createdAt') }} Doclist(s)
{{ document.idDoc }} {{ document.title }} {{ document.createdAt|date("d/m/Y") }} {# if document.idDoc and doclistDocuments[document.idDoc] and doclistDocuments[document.idDoc][0] and doclistDocuments[document.idDoc][0]['idDoclist'] #} {% if document.idDoc and doclistDocuments[document.idDoc] is defined %} {% for doclist in doclistDocuments[document.idDoc] %} {% if doclists[doclist['idDoclist']] is defined %} {{ doclists[doclist['idDoclist']] }} {% endif %} {% endfor %} {% endif %}
{{ knp_pagination_sortable(documentData, 'ID', 'd.idDoc') }} {{ knp_pagination_sortable(documentData, 'Title', 'd.title') }} {{ knp_pagination_sortable(documentData, 'Date', 'd.createdAt') }} Doclist(s)
{% endblock %}
{% include "footer.html.twig" %} {% endblock %}