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
{% for ref in policy.legal_references %}
- {% if ref.url %}{{ ref.text }}{% else %}{{ ref.text }}{% endif %}
{% endfor %}
{% endif %}
{% if policy.related %}
Description
{% for ref in policy.related %}
- {% if ref.url %}{{ ref.text }}{% else %}{{ ref.text }}{% endif %}
{% endfor %}
{% endif %}
{% endblock %}