Testphase abgelaufen not closable modal
This commit is contained in:
parent
56cfb9cb18
commit
b79fad9bdc
|
|
@ -974,35 +974,28 @@ $("#chatButton").click(function(){
|
||||||
<!-- Billarea -->
|
<!-- Billarea -->
|
||||||
{% getAgencyBillStatus request.user.profile.agency as billstatus %}
|
{% getAgencyBillStatus request.user.profile.agency as billstatus %}
|
||||||
{% if billstatus == 3 %}
|
{% if billstatus == 3 %}
|
||||||
<div class="modal fade" tabindex="-1" role="dialog" data-backdrop="static" id="noaccess">
|
<!-- All close -->
|
||||||
|
<div class="modal fade show" tabindex="-1" role="dialog" data-backdrop="static" id="noaccess">
|
||||||
<div class="modal-dialog" role="document">
|
<div class="modal-dialog" role="document">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h5 class="modal-title">Testphase abgelaufen</h5>
|
<h5 class="modal-title">Testphase abgelaufen</h5>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
Der Testzeitraum Ihrer Digitalen Agentur ist abgelaufen. Sollten Sie die Agentur erneut eröffnen wollen, wenden Sie sich bitte an den Support per E-Mail support@digitale-agentur.com!
|
Der Testzeitraum Ihrer Digitalen Agentur ist abgelaufen. Sollten Sie die Agentur erneut eröffnen wollen, wenden Sie sich bitte an den Support per E-Mail an support@digitale-agentur.com!
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function(){
|
||||||
$(document).ready(function(){
|
$("#noaccess").modal({
|
||||||
$("#noaccess").modal("toggle");
|
backdrop: 'static',
|
||||||
});
|
keyboard: false
|
||||||
|
});
|
||||||
$(document).keydown(function(e) {
|
|
||||||
console.log(e.keyCode);
|
|
||||||
if (e.keyCode == 27) {
|
|
||||||
window.location = window.location;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue