{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit{% else %}Add{% endif %} Patient Note - Patients{% endblock %} {% block css %} {% endblock %} {% block content %}

{% if object %}Edit Patient Note{% else %}Add Patient Note{% endif %} {% if object %}{{ object.title }}{% else %}New Clinical Note{% endif %}

Note Information

{% csrf_token %}
{{ form.patient }} {% if form.patient.errors %}
{{ form.patient.errors.0 }}
{% endif %}
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors.0 }}
{% endif %}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{{ form.priority }} {% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
{{ form.content }} {% if form.content.errors %}
{{ form.content.errors.0 }}
{% endif %}
Use the rich text editor to format your note. You can add lists, links, and formatting.
{{ form.follow_up_date }} {% if form.follow_up_date.errors %}
{{ form.follow_up_date.errors.0 }}
{% endif %}
{{ form.is_confidential }} {% if form.is_confidential.errors %}
{{ form.is_confidential.errors.0 }}
{% endif %}
Confidential notes have restricted access
{{ form.follow_up_notes }} {% if form.follow_up_notes.errors %}
{{ form.follow_up_notes.errors.0 }}
{% endif %}
Specific instructions for follow-up actions or appointments.
{{ form.tags }} {% if form.tags.errors %}
{{ form.tags.errors.0 }}
{% endif %}
Add tags to help categorize and search for this note (comma-separated).
{% if object.attachments.exists %} {% for attachment in object.attachments.all %}
{{ attachment.name }} ({{ attachment.file_size|filesizeformat }})
{% endfor %} {% endif %}
Supported formats: PDF, DOC, DOCX, JPG, JPEG, PNG, TXT. Max size: 10MB per file.

Help & Guidelines

Note Writing Tips
  • Be clear and concise in your documentation
  • Use appropriate medical terminology
  • Include relevant dates and times
  • Mark urgent items with high priority
  • Add follow-up dates for actionable items
  • Use confidential flag for sensitive information
Required Fields
  • Patient
  • Note Title
  • Category
  • Priority
  • Note Content
Priority Guidelines
  • URGENTImmediate attention required
  • HIGHImportant, address soon
  • NORMALStandard priority
  • LOWFor reference only
Quick Actions
{% if object %}

Current Patient

{{ object.patient.get_full_name }}
{{ object.patient.patient_id }}
DOB: {{ object.patient.date_of_birth|date:"M d, Y" }}
Age: {{ object.patient.age }} years
Gender: {{ object.patient.get_gender_display }}
{% endif %}

Form Status

Form not saved
Last saved: Never
Auto-save: Enabled
Word count: 0

Recent Notes

{% for note in recent_notes %}
{{ note.get_priority_display|slice:":1" }}
{{ note.title|truncatechars:25 }}
{{ note.created_at|date:"M d" }}
{% empty %}
No recent notes
{% endfor %}
{% endblock %} {% block js %} {% endblock %}