From d06c72043f6fc7cd2511eb164fe6614184dfdbab Mon Sep 17 00:00:00 2001 From: boyska Date: Sat, 20 Nov 2021 18:49:24 +0100 Subject: [PATCH] edit event: two columns --- larigira/dbadmin/templates/edit_event.html | 57 ++++++++++++---------- 1 file changed, 31 insertions(+), 26 deletions(-) diff --git a/larigira/dbadmin/templates/edit_event.html b/larigira/dbadmin/templates/edit_event.html index 78aba52..4b8d68e 100644 --- a/larigira/dbadmin/templates/edit_event.html +++ b/larigira/dbadmin/templates/edit_event.html @@ -49,32 +49,37 @@ $(function() { You are currently editing: {{alarm|tojson}} {% endif %}

Change actions

-
- Available actions: - -
-
- Actions currently added: - -
-
- -
- +
+
+ Available actions: +
    + {% for a in all_actions %} +
  • {% if a.nick %} {{a.nick}} {% else %} {{a.eid}} {%endif%}
  • + {% endfor %} +
+
+
+
+
+ Actions currently added: +
    + {% for a in actions %} +
  • {% if a.nick %} {{a.nick}} {% else %} {{a.eid}} {%endif%}
  • + {% endfor %} +
+
+
+ +
+
+
+
{% endblock content %} {# vim: set ts=2 sw=2 noet: #}