{% extends 'admin/base.html.twig' %} {% block content %}
{% embed "admin/panels/page-title-panel.html.twig" %} {% block pageTitle %} APAC {% endblock %} {% endembed %}
{% if apac is defined and apac|length > 0 %} {% for apacArticle in apac %} {% endfor %} {% endif %}
ID Category Title Content Is Displayed English Document French Document Date Created    
{{ apacArticle.id }} {{ apacArticle.apacCategory.name }} {{ apacArticle.title }} {{ apacArticle.content|default("")|striptags|slice(0, 100) ~ '...' }} {% if apacArticle.isPublished is same as(true) %} Yes {% else %} No {% endif %} {{ apacArticle.englishDocument|default("") }} {{ apacArticle.frenchDocument|default("") }} {% if apacArticle.dateCreated is not null %} {{ apacArticle.dateCreated.format('Y-m-d') }} {% endif %}
{% endblock %} {% block scripts_post_body %} {% endblock %}