From c6da7762f5856451ca64c376ee052986fa62f5fe Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Mon, 4 Aug 2025 18:40:00 +0000
Subject: [PATCH 1/2] Initial plan
From ae2190daab3c4bccd2e3c048a66b7311e4afaf37 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Mon, 4 Aug 2025 18:47:02 +0000
Subject: [PATCH 2/2] Fix template syntax errors in operations check-in report
Co-authored-by: kerryhatcher <1011814+kerryhatcher@users.noreply.github.com>
---
operations/templates/operations/checkin/report.html | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/operations/templates/operations/checkin/report.html b/operations/templates/operations/checkin/report.html
index 308c1de..592e703 100644
--- a/operations/templates/operations/checkin/report.html
+++ b/operations/templates/operations/checkin/report.html
@@ -33,9 +33,11 @@
{% bootstrap_button button_type="link" content="All Incidents" button_class="btn-outline-primary" href="{% url 'operations:checkin_report' %}" %}
{% for incident in incidents %}
{% if current_incident and incident.id == current_incident.id %}
- {% url 'operations:checkin_report' as report_url %}{% bootstrap_button button_type="link" content=incident.name button_class="btn-primary active" href=report_url|add:"?incident="|add:incident.id %}
+ {% url 'operations:checkin_report' as report_url %}
+ {% bootstrap_button button_type="link" content=incident.name button_class="btn-primary active" href=report_url|add:"?incident="|add:incident.id %}
{% else %}
- {% url 'operations:checkin_report' as report_url %}{% bootstrap_button button_type="link" content=incident.name button_class="btn-outline-primary" href=report_url|add:"?incident="|add:incident.id %}
+ {% url 'operations:checkin_report' as report_url %}
+ {% bootstrap_button button_type="link" content=incident.name button_class="btn-outline-primary" href=report_url|add:"?incident="|add:incident.id %}
{% endif %}
{% endfor %}