{% extends 'base.html' %} {% load i18n %} {% load content_helper %} {% block title %}{{SITE_NAME}}{% endblock %} {% block index_banner %}{% endblock %} {% block body %} {% block first_index_row_wrapper %} {% include "snippets/homepage_hero.html" %} {% endblock first_index_row_wrapper %} {% block index_content_row %}
{% block index_sub_left %}

{% blocktrans %}What is Freedom of Information?{% endblocktrans %}

{% blocktrans %}Every citizen has the right under the Freedom of Information Laws to ask for and receive access to information from Public Bodies concerning public affairs.{% endblocktrans %}
{% blocktrans %}Read more about the Freedom of Information!{% endblocktrans %}

{% endblock %}
{% block index_sub_right %}

{% blocktrans %}What does this site do?{% endblocktrans %}

{% blocktrans %}This site publishes Freedom of Information requests and replies so that others don't have to ask for the same information and replies can be scrutinized by the public.{% endblocktrans %}
{% blocktrans %}Read more about the concept!{% endblocktrans %}

{% endblock %}
{% endblock %} {% block index_requests_row %}
{% if successful_foi_requests %}

{% blocktrans %}Successful Requests{% endblocktrans %}

    {% for object in successful_foi_requests %}
  • {% include "foirequest/snippets/request_item.html" %}
  • {% endfor %}
{% endif %}
{% if unsuccessful_foi_requests %}

{% blocktrans %}Unsuccessful Requests{% endblocktrans %}

    {% for object in unsuccessful_foi_requests %}
  • {% include "foirequest/snippets/request_item.html" %}
  • {% endfor %}
{% endif %}
{% endblock %} {% endblock %}