{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit Clinical Note{% else %}New Clinical Note{% endif %}{% endblock %} {% block content %}

{% if object %}Edit Clinical Note{% else %}Create Clinical Note{% endif %}

Back to List

Clinical Note Details

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{% if form.patient.errors %}
{{ form.patient.errors.0 }}
{% endif %}
{% if form.encounter.errors %}
{{ form.encounter.errors.0 }}
{% endif %}
{% if form.note_type.errors %}
{{ form.note_type.errors.0 }}
{% endif %}
{% if form.template.errors %}
{{ form.template.errors.0 }}
{% endif %}
{% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{% if form.content.errors %}
{{ form.content.errors.0 }}
{% endif %}
Use the toolbar above for formatting options. You can also use templates to speed up documentation.
{% if form.status.errors %}
{{ form.status.errors.0 }}
{% endif %}
{% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
Confidential notes have restricted access
Note requires approval from supervising physician
{% if form.tags.errors %}
{{ form.tags.errors.0 }}
{% endif %}
Tags help categorize and search notes (e.g., follow-up, urgent, consultation)
{% if object %} Cancel {% else %} Cancel {% endif %}
Quick Templates
Patient Information
Select a patient to view information
Recent Notes
Select a patient to view recent notes
Documentation Guidelines
  • Use clear, objective language
  • Include relevant clinical details
  • Document patient responses
  • Note any changes in condition
  • Include follow-up plans
{% endblock %}