{% extends "remapp/filteredbase.html" %} {% block navbar %}
There are {{ filter.count }} studies in this list.
{% if admin.exportperm or admin.adminperm %} {% else %}Sorry, you don't have enough permissions to enable study export.
{% endif %} {% endblock %} {% block col2 %} {{ studyfilter }}Institution | Make | Model | Station name | Date | Protocol | Accession number | Number of events | Laterality | Accumulated AGD (mGy) | {% if admin.adminperm %}Delete? | {% endif %} {% for exam in filter_list %}
---|---|---|---|---|---|---|---|
{{ exam.general_equipment_module_attributes_set.get.institution_name }} | {{ exam.general_equipment_module_attributes_set.get.manufacturer }} | {{ exam.general_equipment_module_attributes_set.get.manufacturer_model_name }} | {{ exam.general_equipment_module_attributes_set.get.station_name }} | {{ exam.study_date|date:"Y-m-d" }} {{ exam.study_time|date:"H:i" }} | {{ exam.procedure_code_meaning }} | {{ exam.accession_number }} | {{ exam.projection_xray_radiation_dose_set.get.irradiation_event_xray_data_set.count }} | {{ exam.projection_xray_radiation_dose_set.get.accumulated_xray_dose_set.get.accumulated_mammography_xray_dose_set.get.laterality }} | {{ exam.projection_xray_radiation_dose_set.get.accumulated_xray_dose_set.get.accumulated_mammography_xray_dose_set.get.accumulated_average_glandular_dose }} | {% if admin.adminperm %}Delete | {% endif %}