{% extends "stg_detail.html" %} {% block title %}{{ title }}{% endblock %} {% block details %}

StagingBatch {{ obj.id }}

Status: {{ obj.status|capfirst }}

{% if enqueued|length > 0 %}

Batch Contents

{% for e in enqueued %} {% endfor %}
Item Status Input: Primary Input: Charges Input: PR Input: UFlags Input: Days To Event Input: AHA Link Input: Severity Input: DX/PR Groups
StagingQueue #{{ e.pk }}: {{ e.category }} {{ e.status }}{% if e.message %}
{{ e.message }}{% endif %}{% if e.start %}
Started {{ e.hr_start }}{% if e.complete %}
Completed {{ e.hr_complete }} {% endif %}{% endif %}{% if st.stg_output %}{% with st.stg_output as t %}
{{ t.name }} (StagingTable #{{ t.pk }}){% endwith %}{% endif %}
{% if e.stg_input %}{{ e.stg_input }}{% else %}None{% endif %} {% if e.charges_input %}{{ e.charges_input }}{% else %}None{% endif %} {% if e.pr_input %}{{ e.pr_input }}{% else %}None{% endif %} {% if e.uflag_input %}{{ e.uflag_input }}{% else %}None{% endif %} {% if e.dte_input %}{{ e.dte_input }}{% else %}None{% endif %} {% if e.aha_input %}{{ e.aha_input }}{% else %}None{% endif %} {% if e.severity_input %}{{ e.severity_input }}{% else %}None{% endif %} {% if e.dx_pr_grps %}{{ e.dx_pr_grps }}{% else %}None{% endif %}
{% endif %} {% endblock %}