{% extends "remapp/filteredbase.html" %} {% block navbar %} {% if request.user.userprofile.displayCT %}
  • CT
  • {% endif %} {% if request.user.userprofile.displayRF %}
  • Fluoroscopy
  • {% endif %} {% if request.user.userprofile.displayMG %}
  • Mammography
  • {% endif %} {% if request.user.userprofile.displayDX %}
  • Radiography
  • {% endif %} {% endblock %} {% block toprow %} {% load pagination_tags %}

    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 }}

    Exam filter

    Date format yyyy-mm-dd
    {% for field in filter.form %}
    {{ field.errors }} {{ field }}
    {% endfor %}
    {% endblock %} {% block col1 %} {% autopaginate filter.qs 20 as filter_list %} {% paginate %} {% if admin.adminperm %} {% endif %} {% for exam in filter_list %} {% if admin.adminperm %} {% endif %} {% endfor %}
    InstitutionUnitDateStudy description | Accession numberNumber of eventsDAP total (cGy.cm2)Dose at RP total (Gy)PhysicianDelete?
    {{ exam.generalequipmentmoduleattr_set.get.institution_name }} {{ exam.generalequipmentmoduleattr_set.get.manufacturer }} | {{ exam.generalequipmentmoduleattr_set.get.manufacturer_model_name }} | {{ exam.generalequipmentmoduleattr_set.get.station_name }} {{ exam.study_date|date:"Y-m-d" }} {{ exam.study_time|date:"H:i" }} {{ exam.study_description }} | {{ exam.accession_number }} {{ exam.projectionxrayradiationdose_set.get.irradeventxraydata_set.count }} {{ exam.projectionxrayradiationdose_set.get.accumxraydose_set.get.accumintegratedprojradiogdose_set.get.convert_gym2_to_cgycm2|floatformat:1 }} {{ exam.projectionxrayradiationdose_set.get.accumxraydose_set.get.accumintegratedprojradiogdose_set.get.dose_rp_total|floatformat:6 }} {{ exam.performing_physician_name }} Delete
    {% paginate %} {% endblock %}