{% extends "layout.html" %} {% load static from staticfiles %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %} {% with item=court %} {% include 'admin_bar.html' %} {% endwith %}
{% if court.image %} {% endif %}

{{ court.name }}

{% if court.get_type_name %}

{{ court.get_type_name }} in {{ court.state.name }}

{% endif %}

{% trans 'ECLI code' %}: {{ court.code }}

{{ court.description }}


{% if object_list %}

{% trans 'Cases' %}

{% with cases=object_list %} {% include 'cases/table.html' %} {% endwith %} {% if is_paginated %} {% endif %}
{% endif %} {% if not object_list %} {% include "noresults.html" %} {% endif %} {% endblock %}