From e5087d2cfd31d47ef384e1948eee6fa1d85c47be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20S=C3=A1nchez=20Parra?= Date: Mon, 4 Apr 2022 11:55:42 +0200 Subject: [PATCH] Move toasts messages to the bottom right Also, increase its duration from 5 to 10 seconds. --- ogcp/templates/base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ogcp/templates/base.html b/ogcp/templates/base.html index ceb49bd..e9b72c5 100644 --- a/ogcp/templates/base.html +++ b/ogcp/templates/base.html @@ -110,9 +110,9 @@ {% endif %} $(document).Toasts('create', { class: bgclass, - position: 'topLeft', + position: 'bottomRight', autohide: true, - delay: 5000, + delay: 10000, title: '{{ message }}', }) {% endfor %}