{% extends 'base.html.twig' %} {% block content %}
{% embed "panels/page-title-panel.html.twig" %} {% block pageTitle %} Companies {% endblock %} {% endembed %}
{#
Companies
#}
{% if companies is defined and companies|length > 0 %} {% for company in companies %} {% endfor %} {% endif %}
ID Name Registration Number Is Active Date Created    
{{ company.id }} {{ company.name }} {{ company.registrationNumber }} {% if company.isActive is same as(true) %} Yes {% else %} No {% endif %} {% if company.dateCreated is not null %} {{ company.dateCreated.format('Y-m-d') }} {% endif %} {# #}
{% endblock %} {% block scripts_post_body %} {% endblock %}