{% extends "base.html" %} {% load i18n static patient_tags %} {% block title %}{% trans "Add Addendum" %} - {% patient_name note.patient %}{% endblock %} {% block content %}

{% trans "Add Addendum to Note" %}

{% trans "Back to Note" %}
{% include "includes/messages.html" %}
{% trans "Note is Locked" %}

{% trans "This note is locked and cannot be edited. You can add an addendum to provide additional information." %}

{% trans "Original Note" %}
{% trans "Patient" %}:
{% patient_name note.patient %}
{% trans "Category" %}:
{{ note.get_category_display }}
{% trans "Date" %}:
{{ note.note_date|date:"Y-m-d H:i" }}
{% trans "Content" %}:
{{ note.content }}
{% trans "Add Addendum" %}
{% csrf_token %} {% for field in form %} {% include "includes/form_field.html" %} {% endfor %}
{% trans "Cancel" %}
{% endblock %}