{% extends 'publicbody/base.html' %} {% load i18n %} {% load static %} {% load markup %} {% block title %}{{ object.name }} - {{ SITE_NAME }}{% endblock %} {% block metadescription %}{% blocktrans with name=object.name classification=object.classification juris=object.jurisdiction.name site_name=SITE_NAME %}{{ name }} is a {{ classification }} in {{ juris }} on {{ site_name }}{% endblocktrans %}{% endblock %} {% block extra_head %} {% if not object.confirmed %} {% endif %} {% endblock %} {% block app_body %}

{{ object.name }}

{% if object.email and object.confirmed %}

{% blocktrans %}Make a Request to this public body!{% endblocktrans %}

{% endif %}
{% blocktrans %}Jurisdiction{% endblocktrans %}:
{{ object.jurisdiction }}
{% blocktrans %}Classification:{% endblocktrans %}
{{ object.classification }}
{% blocktrans %}Topics:{% endblocktrans %}
{% for tag in object.tags.all %} {{ tag.name }} {% if not forloop.last %}, {% endif %} {% endfor %}
{% if object.url %}
{% blocktrans %}Website:{% endblocktrans %}
{{ object.url|truncatechars:30 }}
{% endif %} {% if object.email %}
{% blocktrans %}Email:{% endblocktrans %}
{{ object.email }}
{% endif %} {% if object.fax %}
{% blocktrans %}Fax:{% endblocktrans %}
{{ object.fax }}
{% endif %}
{% blocktrans %}Contact:{% endblocktrans %}
{{ object.contact|urlizetrunc:35|linebreaksbr }}
{% blocktrans %}Mailing Address:{% endblocktrans %}
{{ object.address|linebreaksbr }}
{% if object.file_index %}
{% blocktrans %}File Index:{% endblocktrans %}
{{ object.file_index|urlizetrunc:40 }}
{% endif %} {% if object.org_chart %}
{% blocktrans %}Organisation Chart:{% endblocktrans %}
{{ object.org_chart|urlizetrunc:40 }}
{% endif %}
{% if user.is_staff %} {% if object.confirmed %} {% url 'admin:publicbody_publicbody_change' object.id as admin_url %} {% else %} {% url 'admin:publicbody_proposedpublicbody_change' object.id as admin_url %} {% endif %} {% trans "View on Admin site" %} {% endif %}
{% if not object.confirmed %}

{% trans "Proposal" %}

{% if object.created_by == request.user %}

{% trans "You have proposed this public body, but it has not been confirmed yet." %}

{% else %}

{% trans "This public body has been proposed and has not been confirmed yet." %}

{% endif %}
{% endif %} {% if object.request_note %}

{% trans "Special note" %}

{{ object.request_note_html|safe }}
{% endif %} {% if foirequest_count %}

{% trans "Summary of Results" %}

{% for res in resolutions %} {% endfor %}
{% block result_image %} {% endblock result_image %} {{ res.name }}
{{ res.description }}
{{ res.count }}

{% blocktrans count count=foirequest_count %}One requests to this public body{% plural %}{{ count }} requests to this public body{% endblocktrans %}

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

{% trans "RSS Feed" %}
{% trans "Atom Feed" %}

{% if foirequest_count > foirequests|length %}

{% trans "See all FOI requests for this public body" %}

{% endif %} {% else %}

{% trans "There are no requests for this public body yet." %}

{% endif %}
{% endblock %}