{% extends "layout.html" %}
{% load static %}
{% load i18n %}
{% block extra_head %}
{# {{ filter.form.media.css }}#}
{% endblock %}
{% block footer_js %}
{% endblock %}
{% block search_form %}
{% with sidebar=1 sidebar_toggle_icon='fa-filter' %}
{% include 'includes/search_form.html' %}
{% endwith %}
{% endblock %}
{% block sidebar %}
{% endblock %}
{% block content %}
{% trans 'Cases' %}
{% with cases=object_list %}
{% include 'cases/table.html' %}
{% if not cases %}
{% include 'noresults.html' %}
{% endif %}
{% endwith %}
{% include 'pagination_list_view.html' %}
{% endblock %}