From 838ad02b5859fd2b0afdec25c6932306ec4729da Mon Sep 17 00:00:00 2001 From: JOHNMWASHUMA Date: Mon, 11 Nov 2024 19:39:18 +0200 Subject: [PATCH] Update audit type text and move quarantined form section before results/recon form data sections --- .../apps/tally/templates/audit/review.html | 26 +++++++++++-------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/tally_ho/apps/tally/templates/audit/review.html b/tally_ho/apps/tally/templates/audit/review.html index 393806654..fcf2524f3 100644 --- a/tally_ho/apps/tally/templates/audit/review.html +++ b/tally_ho/apps/tally/templates/audit/review.html @@ -6,10 +6,23 @@ {% block content %}
-

{% trans 'Audit:' %} {{ audit_type }}

- +
+

{% trans 'Audit:' %} {% if is_clerk %}{% trans 'Clerk Review' %}{% else %}{% trans 'Supervisor Review' %}{% endif %}

+
{% include 'center_details.html' %} +{% if result_form.audit %} +

{% trans 'Quarantined Form' %}

+
+{% for check in result_form.audit.quarantine_checks.all %} +

+ {% trans 'Failed quarantine check:' %} + {{ check.local_name }} +

+
+{% endfor %} +{% endif %} + {% if reconciliation_form %} {% include 'quality_control/reconciliation.html' with form=reconciliation_form %} {% endif %} @@ -20,15 +33,6 @@

{% trans 'Audit:' %} {{ audit_type }}

- {% if result_form.audit %} -

{% trans 'Quarantined Form' %}

- {% for check in result_form.audit.quarantine_checks.all %} -

- {% trans 'Failed quarantine check:' %} - {{ check.local_name }} -

- {% endfor %} - {% endif %}

{% trans "Problem" %}

{{ form.blank_reconciliation }}

{{ form.blank_results }}