{% block list_nbresults %}
{% set count = Articless.nbResults %}
{% set start = ( Articless.currentPage - 1 ) * Articless.maxPerPage + 1 %}
{% set end = start + Articless.maxPerPage - 1 %}
{% set end = end > count ? count : end %}
{% if Articless.haveToPaginate %}
{% trans with {'%start%': start,'%end%': end,'%count%': count,} from "Admingenerator" %}list.display.range{% endtrans %}
{% elseif count > 0 %}
{% trans with {'%count%': count,} from "Admingenerator" %}list.display.all{% endtrans %}
{% endif %}
{% endblock list_nbresults %}
{% block form_batch_actions %}
{% endblock form_batch_actions %}
{% block list_thead %}
{{ 'GetTitle'|trans({}, 'Admin') }}
|
{% trans from "Admingenerator" %}list.header.actions{% endtrans %} |
{% endblock list_thead %}
{% block list_tbody %}
{% if Articless|length > 0 %}
{% for Articles in Articless %}
{% include "WebmilBackendArticlesBundle:ArticlesList:row.html.twig" with { } %}
{% endfor %} {% block object_actions_script %}
{% endblock object_actions_script %}
{% else %}
{% trans from "Admingenerator" %}list.no.results{% endtrans %} |
{% endif %}
{% endblock list_tbody %}
{% block endform_batch_actions %}
{% endblock endform_batch_actions %}