{% extends 'base.html.twig' %} {% block title %}OceanExpert - A Directory of Marine and Freshwater Professionals{% endblock %} {% block stylesheets %} {% endblock %} {% block body %} {% include('navbarlogin.html.twig') %}

Region info

{{ region.name }}

Description
{{ region.description |raw }}

{% if (app.user is not null and is_granted('ROLE_GLOBAL_EDITOR')) %}
{% if is_granted('ROLE_GLOBAL_EDITOR') %} {% if region.status is defined and region.status == 0 %} {% elseif region.status is defined and region.status == 1 %} {% endif %} {% endif %} Edit Region
{% endif %}
Countries in this region
{{ knp_pagination_render(countries) }}
{% if countries.getTotalItemCount > 0 %}
    {% for item in countries %}
  • {{ item.country | raw }}
  • {% endfor %}

{{ knp_pagination_render(countries) }}
{% else %}
Info! No countries are available in this region.
{% endif %}
{% include('footer.html.twig') %} {% endblock %}