{% extends 'foirequest/base.html' %} {% load i18n %} {% load humanize %} {% block extra_head %} {% endblock %} {% block app_body %} {% block headline %}

{% if filtered_objects.publicbody or filtered_objects.tag or filtered_objects.topic %} {% trans "Requests" %} {% if filtered_objects.publicbody %} {% blocktrans with name=filtered_objects.publicbody.name %}to {{ name }}{% endblocktrans %} {% endif %} {% if filtered_objects.tag %} {% blocktrans with name=filtered_objects.tag.name %}with tag “{{ name }}”{% endblocktrans %} {% endif %} {% if filtered_objects.topic %} {% blocktrans with name=filtered_objects.topic.name %}in topic “{{ name }}”{% endblocktrans %} {% endif %} {% else %} {{ page_title }} {% endif %}

{% endblock headline %}
{% if form.jurisdiction.field.choices|length > 1 %}
{{ form.jurisdiction }}
{% endif %}
{{ form.status }}
{% comment %}
{{ form.topic }}
{% endcomment %} {% if filtered_objects %}
{% trans "Show all FoI requests" %}
{% endif %}
{% blocktrans with num=count|intcomma count counter=count %}One request{% plural %}{{ num }} requests{% endblocktrans %}
{% block col-8-headline %}{% endblock col-8-headline %} {% if object_list.paginator.num_pages > 1 %} {% include "pagination/pagination.html" with page_obj=object_list %} {% endif %}
{% endblock %}