{% extends "main.html" %} {% block content %}

Review Staging Record – Row {{ staging.import_row_number }} {{ staging.get_action_display }} {% if staging.review_status == 'APPROVED' %} {{ staging.get_review_status_display }} {% elif staging.review_status == 'OVERRIDE' %} {{ staging.get_review_status_display }} {% elif staging.review_status == 'REJECTED' %} {{ staging.get_review_status_display }} {% else %} {{ staging.get_review_status_display }} {% endif %}

Archive: #{{ import_archive.pk }}

Field Comparison
{% for row in comparison %} {% endfor %}
Field Current Value Proposed Value Changed?
{{ row.label }} {% if row.current %} {{ row.current }} {% else %} (empty) {% endif %} {% if row.proposed %} {{ row.proposed }} {% else %} (empty) {% endif %} {% if row.changed %} {% endif %}
Review Decision
{% csrf_token %} {{ form.as_p }} Back to List
{% endblock content %}