diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-04 16:19:19 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-19 14:45:56 +0100 |
commit | 6d690a9d3a873d98bb0da72a2b7e860b4dc3bbd3 (patch) | |
tree | 06a1746d9523b6a94853c695c50c143dca82f8f0 /ishtar_common/templates | |
parent | 6b795bef1dd997e9f427cd9652e343b164f7435d (diff) | |
download | Ishtar-6d690a9d3a873d98bb0da72a2b7e860b4dc3bbd3.tar.bz2 Ishtar-6d690a9d3a873d98bb0da72a2b7e860b4dc3bbd3.zip |
🐛 prevent bulk update when no permission is set (refs #6098)
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r-- | ishtar_common/templates/ishtar/forms/success.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ishtar_common/templates/ishtar/forms/success.html b/ishtar_common/templates/ishtar/forms/success.html index e18efd605..963273276 100644 --- a/ishtar_common/templates/ishtar/forms/success.html +++ b/ishtar_common/templates/ishtar/forms/success.html @@ -24,7 +24,11 @@ $(document).ready(function(){ </button> </div> <div class="modal-body form-row"> - {% trans "Changes made successfully. It may be necessary to refresh the sheet." %} + {% if message %} + {{ message }} + {% else %} + {% trans "Changes made successfully. It may be necessary to refresh the table/sheet." %} + {% endif %} </div> </div> </div> |