{% extends 'layouts/base.html' %} {% load i18n %} {% load static %} {% block title %}Inquiry #{{ inquiry.id|slice:":8" }} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "ID" %}: {{ inquiry.id|slice:":8" }} {% if inquiry.patient %} | {% trans "Patient" %}: {{ inquiry.patient.get_full_name }} ({% trans "MRN" %}: {{ inquiry.patient.mrn }}) {% else %} | {% trans "Contact" %}: {{ inquiry.contact_name|default:inquiry.contact_email }} {% endif %}
{% trans "Hospital" %}: {{ inquiry.hospital.name_en }} {% if inquiry.department %} | {% trans "Department" %}: {{ inquiry.department.name_en }} {% endif %}
{{ inquiry.response|linebreaks }}
{% trans "Responded by" %} {{ inquiry.responded_by.get_full_name }} {% trans "on" %} {{ inquiry.responded_at|date:"M d, Y H:i" }}