mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
27 lines
1 KiB
HTML
27 lines
1 KiB
HTML
{% load i18n %}
|
|
<!-- Please wait dialog -->
|
|
<div class="modal fade" id="pleaseWaitDialog" tabindex="-1" role="dialog" aria-labelledby="pleaseWaitDialogLabel" data-backdrop="static" data-keyboard="false">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">{% trans "Processing" %}...</h5>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="progress">
|
|
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width:100%">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function showPleaseWaitDialog() {
|
|
$('#pleaseWaitDialog').modal();
|
|
backgroundJobRunning = true;
|
|
}
|
|
function hidePleaseWaitDialog() {
|
|
$('#pleaseWaitDialog').modal('hide');
|
|
backgroundJobRunning = false;
|
|
}
|
|
</script>
|