{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Finalize Note" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Finalize Clinical Note" %}

{% trans "Once finalized, this note cannot be edited. You will only be able to add addendums." %}
{% trans "Note Details" %}
{% trans "Title" %}:
{{ note.title }}
{% trans "Patient" %}:
{{ note.patient.get_full_name }}
{% trans "Author" %}:
{{ note.author.get_full_name }}
{% trans "Created" %}:
{{ note.created_at }}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}