{% extends "remapp/base.html" %} {% block navct%}
  • {% endblock %} {% block mainblock %}

    Detail list of events

    {% with patientstudy=generalstudymoduleattr.patientstudymoduleattr_set.get %} {% with equipment=generalstudymoduleattr.generalequipmentmoduleattr_set.get %} {% with accum_dose=generalstudymoduleattr.ctradiationdose_set.get.ctaccumulateddosedata_set.get %}
    Total number of events {{ accum_dose.total_number_of_irradiation_events }}
    Total DLP {{ accum_dose.ct_dose_length_product_total|floatformat:2 }} mGy·cm
    {% for event in events_all %} {% with source=event.ctxraysourceparameters_set.all %} {% with dose_check=event.ctdosecheckdetails_set.get %} {% with dose_check_person_alert=dose_check.tid1020_alert.get %} {% with dose_check_person_notification=dose_check.tid1020_notification.get %} {% with source_zero=source.0 %} {% with num_sources=event.number_of_xray_sources %} {% if num_sources != 2 %} {% else %} {% endif %} {% if num_sources == 2 %} {% with source_one=source.1 %} {% endwith %} {% else %} {% endif %} {% endwith %}{% endwith %}{% endwith %}{% endwith %}{% endwith %}{% endwith %} {% endfor %}
    Acquisition protocol Type CTDIvol (mGy) DLP (mGy·cm) Scanning length (mm) kVp mA Max mA Exposure time per rotation (s) Pitch Exposure time (s) Slice thickness (mm) Collimation (mm) X-ray modulation type
    {{ event.acquisition_protocol }} {{ event.ct_acquisition_type }} {{ event.mean_ctdivol|floatformat:2 }} {% if event.ctdiw_phantom_type.code_value == "113691" %} (32 cm) {% elif event.ctdiw_phantom_type.code_value == "113690" %} (16 cm) {% endif %} {{ event.dlp|floatformat:2 }} {{ event.scanninglength_set.get.scanning_length|floatformat:0 }}{{ source_zero.kvp|floatformat:0 }} {{ source_zero.xray_tube_current|floatformat:0 }} {{ source_zero.maximum_xray_tube_current|floatformat:0 }} {{ source_zero.exposure_time_per_rotation|floatformat:3 }}{{ source_zero.kvp|floatformat:0 }} {{ source_zero.xray_tube_current|floatformat:0 }} {{ source_zero.maximum_xray_tube_current|floatformat:0 }} {{ source_zero.exposure_time_per_rotation|floatformat:3 }}{{ event.pitch_factor|floatformat:3 }} {{ event.exposure_time|floatformat:3 }} {{ event.nominal_single_collimation_width|floatformat:3 }} {{ event.nominal_total_collimation_width|floatformat:2 }} {{ event.xray_modulation_type }}
    {{ source_one.kvp|floatformat:0 }} {{ source_one.xray_tube_current|floatformat:0 }} {{ source_one.maximum_xray_tube_current|floatformat:0 }} {{ source_one.exposure_time_per_rotation|floatformat:3 }}
    Comment {{ event.comment }}
    {% if dose_check.dlp_alert_value_configured or dose_check.ctdivol_alert_value_configured %} Dose Check Alerts {% if dose_check.dlp_alert_value_configured %} DLP alert is configured at {{ dose_check.dlp_alert_value|floatformat:2 }} mGy·cm with {% if dose_check.accumulated_dlp_forward_estimate %} an accumulated forward estimate of {{ dose_check.accumulated_dlp_forward_estimate|floatformat:2 }} mGy·cm. {% else %} no accumulated forward estimate recorded. {% endif %} {% endif %} {% if dose_check.ctdivol_alert_value_configured %} CTDIvol alert is configured at {{ dose_check.ctdivol_alert_value|floatformat:2 }} mGy with {% if dose_check.accumulated_ctdivol_forward_estimate %} an accumulated forward estimate of {{ dose_check.accumulated_ctdivol_forward_estimate|floatformat:2 }} mGy. {% else %} no accumulated forward estimate recorded. {% endif %} {% endif %} {% if dose_check.alert_reason_for_proceeding %} Reason for proceeding: {{ dose_check.alert_reason_for_proceeding }} {% endif %} {% if dose_check_person_alert.person_name %} Person authorizing irradiation: {{ dose_check_person_alert.person_name }} {% endif %}
    {% endif %} {% if dose_check.dlp_notification_value_configured or dose_check.ctdivol_notification_value_configured %} Dose Check Notifications {% if dose_check.dlp_notification_value_configured %} DLP notification is configured at {{ dose_check.dlp_notification_value|floatformat:2 }} mGy·cm with {% if dose_check.dlp_forward_estimate %} an accumulated forward estimate of {{ dose_check.dlp_forward_estimate|floatformat:2 }} mGy·cm. {% else %} no accumulated forward estimate recorded. {% endif %} {% endif %} {% if dose_check.ctdivol_notification_value_configured %} CTDIvol notification is configured at {{ dose_check.ctdivol_notification_value|floatformat:2 }} mGy with {% if dose_check.ctdivol_forward_estimate %} a forward estimate of {{ dose_check.ctdivol_forward_estimate|floatformat:2 }} mGy. {% else %} no forward estimate recorded. {% endif %} {% endif %} {% if dose_check.notification_reason_for_proceeding %} Reason for proceeding: {{dose_check.notification_reason_for_proceeding }} {% endif %} {% if dose_check_person_notification.person_name %} Person authorizing irradiation: {{ dose_check_person_notification.person_name }} {% endif %} {% endif %}
    {% if is_paginated %}

    {% if has_next %} Older {% endif %} {% if has_next and has_previous %} | {% endif %} {% if has_previous %} Newer {% endif %}

    {% endif %} {% endwith %}{% endwith %}{% endwith %} {% endblock %}