{% extends 'base.html' %} {% load static %} {% block title %}Surgical Notes{% endblock %} {% block css %} {% endblock %} {% block content %}

Surgical Notes Management

{{ stats.total_notes|default:0 }}
Total Notes
{{ stats.draft_notes|default:0 }}
Draft Notes
{{ stats.completed_notes|default:0 }}
Completed
{{ stats.signed_notes|default:0 }}
Signed
Surgical Notes
{% for note in notes %} {% empty %} {% endfor %}
Patient Procedure Surgeon Date Status Priority Last Modified Actions
{{ note.patient.get_full_name }}
ID: {{ note.patient.patient_id }}
{{ note.procedure_name }}
{{ note.procedure_code|default:"" }}
{{ note.surgeon.get_full_name }}
{{ note.surgeon.specialization|default:"" }}
{{ note.surgery_date|date:"M d, Y" }}
{{ note.surgery_date|time:"g:i A" }}
{{ note.get_status_display }} {{ note.get_priority_display }}
{{ note.updated_at|date:"M d, Y" }}
{{ note.updated_at|time:"g:i A" }}
{# {% if note.status != 'signed' %}#} {# #} {# #} {# #} {# {% endif %}#} {# {% if note.status != 'signed' %}#} {# #} {# #} {# #} {# {% endif %}#}

No surgical notes found

Create First Note
{% endblock %} {% block js %} {% endblock %}