{% extends "remapp/filteredbase.html" %} {% block navrf %}
  • {% endblock %} {% block toprow %} {% load pagination_tags %}

    There are {{ filter.count }} studies in this list.

    {% endblock %} {% block col2 %}

    Data export

    {% if admin.exportgroup %}

    Note: Apply the exam filter first to refine what is exported.

    Export to CSV  {% if admin.pidgroup %} With names With ID With both

    {% endif %} Export to XLSX {% if admin.pidgroup %} With names With ID With both {% endif %}

    {% else %}

    No export permissions

    {% endif %}
    {{ 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.admingroup %} {% endif %} {% for exam in filter_list %} {% if admin.admingroup %} {% endif %} {% endfor %}
    InstitutionMake | Model | Display nameDateStudy 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.unique_equipment_name.display_name }} {{ exam.study_date|date:"Y-m-d" }} {{ exam.study_time|date:"H:i" }} {{ exam.study_description }} | {% if not exam.accession_hashed %} {{ exam.accession_number }} {% endif %} {{ exam.projectionxrayradiationdose_set.get.irradeventxraydata_set.count }} {% for record in exam.projectionxrayradiationdose_set.get.accumxraydose_set.all %} {% if exam.projectionxrayradiationdose_set.get.accumxraydose_set.all.count > 1 %} {{ record.acquisition_plane }}: {% endif %} {{ record.accumintegratedprojradiogdose_set.get.convert_gym2_to_cgycm2|floatformat:1 }}
    {% endfor %}
    {% for record in exam.projectionxrayradiationdose_set.get.accumxraydose_set.all %} {% if exam.projectionxrayradiationdose_set.get.accumxraydose_set.all.count > 1 %} {{ record.acquisition_plane }}: {% endif %} {{ record.accumintegratedprojradiogdose_set.get.dose_rp_total|floatformat:6 }}
    {% endfor %}
    {{ exam.performing_physician_name }} Delete
    {% paginate %} {% endblock %}