{% extends "base.html" %} {% load static %} {% block title %}Patient Notes - Patients{% endblock %} {% block css %} {% endblock %} {% block content %}

Patient Notes Clinical Documentation

Patient Notes

Add Note
{{ total_notes }}
Total Notes
{{ today_notes }}
Today's Notes
{{ urgent_notes }}
Urgent Notes
{{ follow_up_notes }}
Follow-up Required
{% for note in object_list %} {% empty %} {% endfor %}
Patient Note Category Priority Created By Date Follow-up Actions
{{ note.patient.patient_id }}
{{ note.title|truncatechars:50 }}
{{ note.content|truncatechars:100 }}
{{ note.get_category_display }} {{ note.get_priority_display }} {% if note.priority == 'URGENT' %}
Urgent {% endif %}
{{ note.created_by.get_full_name }}
{{ note.created_by.username }}
{{ note.created_at|date:"M d, Y" }}
{{ note.created_at|time:"H:i" }}
{% if note.follow_up_date %} {{ note.follow_up_date|date:"M d, Y" }} {% if note.is_follow_up_overdue %}
Overdue {% elif note.is_follow_up_due_soon %}
Due Soon {% endif %} {% else %} None {% endif %}
No patient notes found
Add First Patient Note
{% if is_paginated %} {% endif %}
{% endblock %} {% block js %} {% endblock %}