{# The Report template of the clinical note form. @package OpenEMR @subpackage Forms @author Robert Down @copyright Copyright (c) 2023 Providence Healthtech @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 #}
{% for n in notes %}
{{ "Date"|xlt }}
{{ "Type"|xlt }}
{{ n.codetext is not empty ? n.codetext|xlListLabel|text : "Unspecified"|xlt }}
{{ "Category"|xlt }}
{{ n.category_title is not empty ? n.category_title|xlListLabel|text : "Unspecified"|xlt }}
{{ "Author"|xlt }}
{{ n.user|text }}
{% if n.code %}
{{ "Code"|xlt }}
{{ n.code|text }}
{% endif %}
{{ n.description|text|nl2br }}
{% endfor %}