{% extends "base.html" %} {% load i18n static patient_tags %} {% block title %}{% trans "Clinical Notes" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Clinical Notes" %}

{% trans "New Note" %}
{% if notes %} {% for note in notes %}
{{ note.get_category_display }} {% if note.is_locked %} {% trans "Locked" %} {% else %} {% trans "Unlocked" %} {% endif %}
{{ note.title }}

{% patient_name note.patient %}

{{ note.content|striptags|truncatewords:20 }}

{% endfor %} {% else %}

{% trans "No clinical notes found." %}

{% trans "Create First Note" %}
{% endif %}
{% if search_form %}
{% trans "Advanced Search" %}
{{ search_form.as_p }}
{% trans "Clear" %}
{% endif %} {% if is_paginated %} {% include "includes/pagination_unified.html" %} {% endif %}
{% endblock %} {% block css %} {% endblock %}