{% extends 'admin/base.html.twig' %} {% block content %}
{% embed "admin/panels/page-title-panel.html.twig" %} {% block pageTitle %} Region Countries {% endblock %} {% endembed %}
{% if regionCountries is defined and regionCountries|length > 0 %} {% for regionCountry in regionCountries %} {% endfor %} {% endif %}
ID Region Name Description Is Displayed Thumbnail Date Created    
{{ regionCountry.id }} {{ regionCountry.region.name }} {{ regionCountry.name }} {{ regionCountry.description|default("")|striptags|slice(0, 100) ~ '...' }} {% if regionCountry.isActive is same as(true) %} Yes {% else %} No {% endif %} {% if regionCountry.imagePath is not null%} {{ regionCountry.name }} image {% endif %} {% if regionCountry.dateCreated is not null %} {{ regionCountry.dateCreated.format('Y-m-d') }} {% endif %}
{% endblock %} {% block scripts_post_body %} {% endblock %}