{% extends "remapp/base.html" %} {% block headextras %} {% endblock %} {% block navmg%}
| Total number of events | {{ events_all|length }} |
|---|---|
| Accumulated AGD: Left | {{ breast.accumulated_average_glandular_dose|floatformat:3 }} mGy |
| Accumulated AGD: Right | {{ breast.accumulated_average_glandular_dose|floatformat:3 }} mGy |
| Accumulated AGD: Both breasts | {{ breast.accumulated_average_glandular_dose|floatformat:3 }} mGy |
| Time | Acquisition protocol | {% if showStandardNames %}Standard acquisition protocol | {% endif %}Laterality | View code | View modifier | Compression thickness (mm) | Target | Filter | kVp | mA | ms | mAs | ESD (mGy) | AGD (mGy) | Exposure control mode | Exposure control mode description | {% for event in events_all %} {% with source_data=event.irradeventxraysourcedata_set.select_related.get %}|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ event.date_time_started|time:"H:i.s" }} | {{ event.acquisition_protocol }} | {% if showStandardNames %}
|
{% endif %}
{{ event.laterality.code_meaning }} | {{ event.image_view.code_meaning }} | {% for modifier in event.imageviewmodifier_set.all %} {{ modifier.image_view_modifier.code_meaning }} {% endfor %} | {{ event.irradeventxraymechanicaldata_set.get.compression_thickness|floatformat:0 }} | {{ source_data.anode_target_material.code_meaning.split.0 }} |
{% for filter_material in source_data.xrayfilters_set.all %}
{{ filter_material.xray_filter_material.code_meaning.split.0 }} {% endfor %} |
{% for kvp_value in source_data.kvp_set.all %}
{{ kvp_value.kvp|floatformat:0 }} {% endfor %} |
{% for tube_current in source_data.xraytubecurrent_set.all %}
{{ tube_current.xray_tube_current|floatformat:1 }} {% endfor %} |
{% for exp_time in source_data.pulsewidth_set.all %}
{{ exp_time.pulse_width|floatformat:1 }} {% endfor %} |
{% for exposure_value in source_data.exposure_set.all %}
{{ exposure_value.convert_uAs_to_mAs|floatformat:1 }} {% endfor %} |
{{ event.entrance_exposure_at_rp|floatformat:3 }} | {{ source_data.average_glandular_dose|floatformat:3 }} | {{ source_data.exposure_control_mode }} | {{ event.comment }} | |