diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-04-04 11:55:42 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-04-08 08:01:48 +0200 |
commit | e5087d2cfd31d47ef384e1948eee6fa1d85c47be (patch) | |
tree | 4d16cdf911c7244ac998192e47185d5c3d4adc76 | |
parent | 1869ad6eb49dedc2fe7e3bd75b16ca7595c809ee (diff) |
Move toasts messages to the bottom right
Also, increase its duration from 5 to 10 seconds.
-rw-r--r-- | ogcp/templates/base.html | 4 |
1 files 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 %} |