{% extends 'base.html' %} {% load i18n %} {% load static %} {% load flatpages %} {% block title %}{{ object.name }} - {{ SITE_NAME }}{% endblock %} {% block body %}

{% block header_headline %} {% blocktrans with name=object.name %}Freedom of Information
in {{ name }}{% endblocktrans %} {% endblock %}

{% blocktrans %}Ask Public Bodies for administrative information — it's your right.{% endblocktrans %}

{% trans "Which Public Bodies?" %}
{% url 'publicbody-list' jurisdiction=object.slug as pb_url %}

{% trans "All bodies that work on administrative tasks of this jurisdiction." %}

{% trans "What Information?" %}
{% url 'publicbody-list' jurisdiction=object.slug as pb_url %}

{% trans "Contracts, memos, reports and other documents of the administration: you have the right to know." %}

{% trans "What right?" %}
{% url 'publicbody-list' jurisdiction=object.slug as pb_url %}

{% blocktrans with name=object.name %}The freedom of information law in {{ name }} allows you access to administrative information. {% endblocktrans %}

{% block jurisdiction_body %}
{% block jurisdiction_text %} {% with page_url="/"|add:object.slug|add:"/text/" %} {% get_flatpages page_url as content_page %} {% if content_page %}

{{ content_page.0.title }}

{{ content_page.0.content|safe }} {% endif %} {% endwith %} {% endblock %}
{% block jurisdiction_sidebar %}

{% block jurisdiction_sidebar_header %} {% blocktrans with name=SITE_NAME %}Facts about {{ name }}{% endblocktrans %} {% endblock %}

{% block jurisdiction_sidebar_content %} {% endblock %} {% block jurisdiction_sidebar_laws %}

{% block jurisdiction_sidebar_laws_header %} {% blocktrans with name=object.name %}Information laws in {{ name }}{% endblocktrans %} {% endblock %}

{% for law in laws %} {% block jurisdiction_sidebar_laws_law %}

{{ law.name }} {% if law.created %} {% blocktrans with date=law.created %}came into effect on {{ date }}{% endblocktrans %} {% endif %} - {% trans "get to know this law..." %}

{% endblock %} {% endfor %} {% endblock %} {% block jurisdiction_sidebar_requests %}

{% block jurisdiction_sidebar_requests_header %} {% blocktrans with name=object.name %}Requests in {{ name }}{% endblocktrans %} {% endblock %}

    {% for foirequest in foirequests %}
  • {% include "foirequest/snippets/request_item.html" with object=foirequest %}
  • {% endfor %}
{% endblock %} {% endblock %}
{% endblock %}
{% endblock %}