{% extends "base.html" %} {% load static %} {% block title %}{% if form.instance.id %}Edit{% else %}Create{% endif %} Clinical Note{% endblock %} {% block css %} {% endblock %} {% block content %}

{% if form.instance.id %}Edit{% else %}Create{% endif %} Clinical Note Comprehensive clinical documentation

{% csrf_token %}

Note Information

{% if form.errors %}
Error! Please correct the errors below.
    {% for field in form %} {% for error in field.errors %}
  • {{ field.label }}: {{ error }}
  • {% endfor %} {% endfor %} {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.title }} {% if form.title.help_text %}
{{ form.title.help_text }}
{% endif %}
{{ form.note_type }} {% if form.note_type.help_text %}
{{ form.note_type.help_text }}
{% endif %}
{{ form.patient }} {% if form.patient.help_text %}
{{ form.patient.help_text }}
{% endif %}
{{ form.related_encounter }} {% if form.related_encounter.help_text %}
{{ form.related_encounter.help_text }}
{% endif %}
{{ form.note_datetime }} {% if form.note_datetime.help_text %}
{{ form.note_datetime.help_text }}
{% endif %}
{{ form.author }} {% if form.author.help_text %}
{{ form.author.help_text }}
{% endif %}

Note Content

{% if form.instance.structured_content %} {% for section in form.instance.structured_content %}
{% endfor %} {% endif %}

Related Records

{{ form.related_problems }} {% if form.related_problems.help_text %}
{{ form.related_problems.help_text }}
{% endif %}
{{ form.related_care_plans }} {% if form.related_care_plans.help_text %}
{{ form.related_care_plans.help_text }}
{% endif %}
Cancel

Note Templates

{% for template in note_templates %}
{{ template.title }}

{{ template.description|truncatechars:50 }}

{{ template.get_note_type_display }} v{{ template.version }}
{% empty %}
No templates available.
{% endfor %}

Help & Shortcuts

Tips
  • Use structured format for organized notes
  • Link to problems and care plans for better context
  • Use templates to save time
  • Save as draft to continue later
Keyboard Shortcuts
Save Draft Ctrl+S
Add Section Ctrl+N
Bold Text Ctrl+B
Italic Text Ctrl+I
Underline Text Ctrl+U
{% if selected_patient %}

Patient Information

{% if selected_patient.profile_image %} Patient {% else %}
{{ selected_patient.get_initials }}
{% endif %}
{{ selected_patient.get_full_name }}
{{ selected_patient.get_age }} years | {{ selected_patient.get_gender_display }}
MRN: {{ selected_patient.medical_record_number }}
{% endif %}
{% endblock %} {% block js %} {% endblock %}