From 5eed20cbd29eb3d34c47b498da9996b5dd87b937 Mon Sep 17 00:00:00 2001 From: Katie Smith Date: Mon, 14 Jun 2021 12:40:10 +0100 Subject: [PATCH] Move the '- archived' label for orgs to be next to the org name --- app/templates/views/organisations/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/views/organisations/index.html b/app/templates/views/organisations/index.html index 2fa9cca34..c9a6fd8e3 100644 --- a/app/templates/views/organisations/index.html +++ b/app/templates/views/organisations/index.html @@ -17,13 +17,13 @@ {% for org in organisations %}
  • {{ org.name }} + {% if not org.active %} + - archived + {% endif %}

    {{ org.count_of_live_services }} live service{% if org.count_of_live_services != 1 %}s{% endif %}

    - {% if not org.active %} - - archived - {% endif %}
  • {% endfor %}