{% extends 'base.html.twig' %} {% block title %}{{ "title_unsettled_sentence_list"|trans }}{% endblock %} {% block body %}
{{form(searchForm)}}
{% trans %}title_fines{% endtrans %} {% trans %}title_jail_time{% endtrans %} {% trans %}title_community_work{% endtrans %}

{{ 'title_count'|trans }}: {{ count }}

{% if pagination[0].directory is not defined %}{% set nodirectorylink = true %}{% endif %} {% set slicelimit = (limit is defined)? limit : null %} {% set counter = 0 %} {% if pagination|length > 0 %}
{% if noaction is not defined %} {% endif %} {% for i in pagination |slice(0, slicelimit) %} {% set counter = counter + 1 %} {% include 'sentence/line.html.twig' with {'sentence': i, 'type': type } %} {% endfor %}
{% trans %}title_name{% endtrans %} {% trans %}title_missing{% endtrans %} {% trans %}title_date{% endtrans %}{% trans %}tooltip_view{% endtrans %}
{% if slicelimit is not null and pagination|length > slicelimit %}
{% if nodirectorylink is not defined %} {% trans %}button_view_more{% endtrans %} {% else %} {% trans %}button_view_more{% endtrans %} {% endif %}
{% endif %} {% else %}

{% trans %}no_data{% endtrans %}

{% endif %}
{{ knp_pagination_render(pagination) }}
{% endblock %}