{% extends 'layout.html' %} {% load static from staticfiles %} {% load i18n %} {% block search_form %} {% with sidebar=1 sidebar_toggle_icon='fa-info-circle' %} {% include 'includes/search_form.html' %} {% endwith %} {% endblock %} {% block sidebar %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% with item=item %} {% include 'admin_bar.html' %} {% endwith %} {% if item.is_private %}
{% trans 'private_content_warning' %}
{% endif %}

{{ item.get_title }}

{% autoescape off %} {{ content }} {% endautoescape %}

{% trans 'Related Cases' %}

{% if item.get_related %} {% with cases=item.get_related %} {% include 'cases/table.html' %} {% endwith %} {% else %}

{% trans 'empty_related_content' %}

{% endif %}
{% include 'references.html' %} {% endblock %}