move files now has bs toast pop for success and stays on the page you are on for more moves

This commit is contained in:
2023-01-03 22:46:29 +11:00
parent 972eac5b5b
commit 0eeb68658b
4 changed files with 12 additions and 5 deletions

View File

@@ -168,6 +168,16 @@
{% if not InDBox %}
{%block script_content %}{% endblock script_content %}
<div class="position-fixed bottom-0 end-0 p-3" style="z-index: 11">
<div id="status_toast" class="toast align-items-center text-white bg-success border-0" role="alert" aria-live="assertive" aria-atomic="true">
<div class="d-flex">
<div class="toast-body">
Hello, world! This is a toast message.
</div>
<button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
</div>
</div>
</body>
</html>
{% endif %}