{{ knp_pagination_render(results) }}
{% for message in app.flashes('success') %}
{{ message }}
{% endfor %}
|
{{ knp_pagination_sortable(results, 'ID', 'c.id') }}
{{ knp_pagination_sortable(results, 'Company', 'c.company') }}
{{ knp_pagination_sortable(results, 'Type', 'c.type') }}
{{ knp_pagination_sortable(results, 'Phone', 'c.phone') }}
{{ knp_pagination_sortable(results, 'Country', 'co.country') }}
{% for company in results %}
|
{{ company.id }} |
{{ company.company }} |
{{ company.type|default('N/A') }} |
{{ company.phone }} |
{{ company.country }} |
{% endfor %}
{# Commented out AngularJS code
{% verbatim %}
...
{% endverbatim %}
#}