{% 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 %} {% include 'admin_bar.html' %} {% if not item.book.latest %}
{% blocktrans with url=item.get_absolute_url %}You are currently viewing an outdated revision of this law. Click here to view the latest revision.{% endblocktrans %}
{% endif %}

{{ item.get_title }}

{{ item.book.title }}

{% if not item.is_disabled %}
{% autoescape off %} {{ item.get_html_content }} {% endautoescape %}
{% if item.get_footnotes %}

{% for footnote in item.get_footnotes %}

{{ footnote }}

{% endfor %} {% endif %} {% endif %}
{% if item.is_disabled %}
{% trans 'This law is deprecated.' %}
{% endif %} {% include 'laws/references.html' %} {% endblock %}