{% extends "base.html" %} {% load static %} {% block title %}{{ template.title }} | Note Template Detail{% endblock %} {% block css %} {% endblock %} {% block content %}

Note Template Detail Standardized clinical documentation template

{{ template.title }}

Created by {{ template.created_by.get_full_name }} Version {{ template.version }} Used {{ template.usage_count }} times
{{ template.get_note_type_display }}

Template Content

{% if template.structured_content %} {% for section in template.structured_content %}
{{ section.title }}
{{ section.content|safe }}
{% endfor %} {% else %} {{ template.content|safe }} {% endif %}

Template Details

Usage Over Time
Usage by Department
Recent Usage
{% for usage in template.recent_usage %} {% empty %} {% endfor %}
Date User Patient Note Type Actions
{{ usage.created_at }} {{ usage.user.get_full_name }} {{ usage.patient.get_full_name }} {{ usage.get_note_type_display }} View Note
No recent usage data available.
Version History
{% for version in template.version_history %}
{{ version.version }}
{{ version.title }}
{{ version.created_at }} by {{ version.created_by.get_full_name }}
Changes: {{ version.change_description }}
{% empty %}
No version history available for this template.
{% endfor %}
{% endblock %} {% block js %} {% endblock %}