{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}Survey #{{ survey.id|slice:":8" }} - PX360{% endblock %} {% block content %}
Back to Surveys
{{ survey.survey_template.name }}
Survey Responses
{% for response in responses %}
Q{{ forloop.counter }}: {{ response.question.text }}
{% if response.numeric_value %} Score: {{ response.numeric_value }} {% endif %} {% if response.choice_value %} {{ response.choice_value }} {% endif %} {% if response.text_value %}

{{ response.text_value }}

{% endif %}
{% empty %}

No responses yet

{% endfor %}
Survey Information
Status:
{{ survey.get_status_display }}
{% if survey.total_score %}
Total Score:

{{ survey.total_score|floatformat:1 }}/5.0

{% if survey.is_negative %} Negative Feedback {% endif %}
{% endif %} {% if survey.sent_at %}
Sent:
{{ survey.sent_at|date:"M d, Y H:i" }}
{% endif %} {% if survey.completed_at %}
Completed:
{{ survey.completed_at|date:"M d, Y H:i" }}
{% endif %}
Patient Information
Name:
{{ survey.patient.get_full_name }}
MRN:
{{ survey.patient.mrn }}
{% endblock %}