{% extends "layout.html" %}
{% load static from staticfiles %}
{% load i18n %}
{% block search_form %}
{% with sidebar=1 sidebar_toggle_icon='fa-filter' %}
{% include 'includes/search_form.html' %}
{% endwith %}
{% endblock %}
{% block footer_js %}
{% endblock %}
{% block sidebar %}
{% endblock %}
{% block content %}
{% trans 'Courts' %}
{% include 'sortable_table.html' %}
{% for obj in object_list %}
{{ obj.name }} |
{{ obj.code }} |
{{ obj.state.name }} |
{% endfor %}
{% if not object_list %}
{% include "noresults.html" %}
{% endif %}
{% include "pagination_list_view.html" %}
{% endblock %}