{% extends "base.html" %} {% block title %}Policy {{ policy.code }}: {{ policy.title }}{% endblock %} {% block description %}TCSD Policy {{ policy.code }} — {{ policy.title }}.{% endblock %} {% block breadcrumbs %} {% set crumbs = [ {"text": "Policies Listing", "url": "/policies/"}, {"text": "Policy " ~ policy.code } ] %} {% include "partials/breadcrumbs.html" %} {% endblock %} {% block content %}

Policy {{ policy.code }}: {{ policy.title }}

{% if policy.adopted %}Original Adopted Date: {{ policy.adopted | string }} | {% endif %} {% if policy.last_revised %}Last Revised Date: {{ policy.last_revised | string }} | {% endif %} {% if policy.last_reviewed %}Last Reviewed Date: {{ policy.last_reviewed | string }} | {% endif %} {% if policy.status %}Status: {{ policy.status }}{% endif %}

{{ policy.body_html | safe }}
{% if policy.legal_references %}

Legal References

{% endif %} {% if policy.related %}

Description

{% endif %}
{% endblock %}