From e7e760de2e40b69b9605880abbc092808a6514f8 Mon Sep 17 00:00:00 2001 From: FreneticScribbler Date: Sat, 15 Oct 2022 17:58:07 +0100 Subject: [PATCH] Fix copy to clipboard buttons on authorisation request form --- .../templates/eventauthorisation_request.html | 30 ++++++++----------- 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/RIGS/templates/eventauthorisation_request.html b/RIGS/templates/eventauthorisation_request.html index 72dd2e9e..ae2e837c 100644 --- a/RIGS/templates/eventauthorisation_request.html +++ b/RIGS/templates/eventauthorisation_request.html @@ -5,21 +5,6 @@ {% block title %}Request Authorisation{% endblock %} -{% block js %} - - - - -{% endblock %} - {% block content %}
@@ -33,11 +18,11 @@
{% if object.person.email %}
Person Email
-
{{ object.person.email }}{% button 'copy' id='#person-email' %}
+
{{ object.person.email }} {% button 'copy' id='#person-email' %}
{% endif %} {% if object.organisation.email %}
Organisation Email
-
{{ object.organisation.email }}{% button 'copy' id='#org-email' %}
+
{{ object.organisation.email }} {% button 'copy' id='#org-email' %}
{% endif %}
{% else %} @@ -57,11 +42,20 @@
- + + + {% endblock %}