From 1dfd0cbf4791d01a8c438d5c1901459ecea878e6 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Thu, 25 Aug 2022 17:20:47 +0200 Subject: [PATCH] Fix the interim meeting request approval form (#4356) Fixes #4355 --- .../meeting/interim_request_details.html | 94 +++++++++---------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/ietf/templates/meeting/interim_request_details.html b/ietf/templates/meeting/interim_request_details.html index 0cfec501b..b627fdbb8 100644 --- a/ietf/templates/meeting/interim_request_details.html +++ b/ietf/templates/meeting/interim_request_details.html @@ -103,56 +103,56 @@ {% endif %} {% endfor %} - {% if can_approve and status_slug == 'apprw' %} -
- {% csrf_token %} - {% endif %} - {% with meeting_status.slug as status_slug %} - {% if can_edit %} - Edit - {% endif %} - {% if can_approve and status_slug == 'apprw' %} - - - {% endif %} - {% if user|has_role:"Secretariat" and status_slug == 'scheda' %} - - Announce - - - Skip announcement + {% with meeting_status.slug as status_slug %} + {% if can_approve and status_slug == 'apprw' %} + + {% csrf_token %} + {% endif %} + {% if can_edit %} + Edit + {% endif %} + {% if can_approve and status_slug == 'apprw' %} + + + {% endif %} + {% if user|has_role:"Secretariat" and status_slug == 'scheda' %} + + Announce + + + Skip announcement + + {% endif %} + {% if can_edit %} + {% if status_slug == 'apprw' or status_slug == 'scheda' or status_slug == 'sched' %} + + Cancel meeting {% endif %} - {% if can_edit %} - {% if status_slug == 'apprw' or status_slug == 'scheda' or status_slug == 'sched' %} - - Cancel meeting - - {% endif %} - {% endif %} - {% if status_slug == "apprw" %} - Back - {% elif status_slug == "scheda" %} - Back - {% elif status_slug == "sched" %} - - Back - - {% else %} - Back - {% endif %} - {% endwith %} - {% if can_approve and status_slug == 'apprw' %}
{% endif %} + {% endif %} + {% if status_slug == "apprw" %} + Back + {% elif status_slug == "scheda" %} + Back + {% elif status_slug == "sched" %} + + Back + + {% else %} + Back + {% endif %} + {% if can_approve and status_slug == 'apprw' %}{% endif %} + {% endwith %} {% endblock %} {% block js %} -{% endblock %} +{% endblock %} \ No newline at end of file