{% extends 'base.html.twig' %} {% block title %}OceanExpert - A Directory of Marine and Freshwater Professionals{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% include 'navbarlogin.html.twig' %}
{% if( action !='browse') %} {% if(action =='advSearch') %} Back to Advance Search {% endif %}

Project Search
You can use various filters based on categories using "FILTERS". You can nest queries using "" for more refined results

{% endif %} {% if(action !='advSearch') %}
{% if(action =='browse') %} Back to Advance Search {% endif %}

Projects By:

Starts with:

{% for letter in 'A'..'Z' %} {% if letter in browseOptions.title %} {{letter}} {% else %} {% endif %} {% endfor %}

Name:

{#{% if searchOptions.instSeas|length > 0 %}#}

Name:

    {% for agency in browseOptions.agency %}
  • {{agency}}
  • {% endfor %}
{#{% endif %}#}

Status:

    {% for status in browseOptions.projectStatus %}
  • {{status}}
  • {% endfor %}
{% endif %} {% if app.request.get('action')|length > 0 %}
Countries hide
Agency hide

{{ searchResultType }}

{% if searchResultText is defined %}
{{ searchResultText | raw }}
{% endif %} {% if data.getTotalItemCount is defined and data.getTotalItemCount > 0 %}
Displaying {{ data.getPaginationData.firstItemNumber }} – {{ data.getPaginationData.lastItemNumber }} results of {{ data.getTotalItemCount }}.
{% if data.getTotalItemCount >10 %} Results per page. {% endif %}
{% for item in data %}
{% set label = "" %} {% if item.status == 0 %} {% set label = "text-warning" %} {% elseif item.status == 1 %} {% set label = "text-default" %} {% elseif item.status == 2 %} {% set label = "text-warning" %} {% elseif item.status == 3 %} {% set label = "text-danger" %} {% endif %}

{{ item.title }}

{{ item.project_status }}

{% endfor %}
{#
#}
Displaying {{ data.getPaginationData.firstItemNumber }} – {{ data.getPaginationData.lastItemNumber }} results of {{ data.getTotalItemCount }}.
{% if data.getTotalItemCount >10 %} Results per page. {% endif %}
{#
#}
{% endif %}
{% endif %}
{% include 'footer.html.twig' %} {% endblock %}