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

{% trans "Therapy Session" %}

{% trans "Session Information" %}
{% trans "Patient" %}:
{% patient_name therapysession.patient %}
{% trans "Date" %}:
{{ therapysession.session_date|date:"Y-m-d" }}
{% trans "Modality" %}:
{{ therapysession.get_modality_display }}
{% trans "Duration" %}:
{{ therapysession.duration_minutes }} {% trans "minutes" %}
{% if therapysession.notes %}
{% trans "Notes" %}:
{{ therapysession.notes }}
{% endif %}
{% endblock %}