From 3e4bed15b5715dc52ffe00aab770d676974c952c Mon Sep 17 00:00:00 2001 From: Madison Swain-Bowden Date: Sun, 9 Jan 2022 18:04:48 -0800 Subject: [PATCH] Move links section to after incidents (#109) --- OpenOversight/app/templates/officer.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenOversight/app/templates/officer.html b/OpenOversight/app/templates/officer.html index ef5053a3e..b3d9ddaaf 100644 --- a/OpenOversight/app/templates/officer.html +++ b/OpenOversight/app/templates/officer.html @@ -116,9 +116,6 @@

Officer Detail: {{ officer.full_name() }}

{% if is_admin_or_coordinator %} {% include "partials/officer_notes.html" %} {% endif %} - {% with obj=officer %} - {% include "partials/links_and_videos_row.html" %} - {% endwith %} {# end col #}
@@ -128,6 +125,9 @@

Officer Detail: {{ officer.full_name() }}

{% if officer.incidents or is_admin_or_coordinator %} {% include "partials/officer_incidents.html" %} {% endif %} + {% with obj=officer %} + {% include "partials/links_and_videos_row.html" %} + {% endwith %}
{# end col #} {# end row #}