Testphase abgelaufen not closable modal
This commit is contained in:
parent
56cfb9cb18
commit
b79fad9bdc
|
|
@ -974,35 +974,28 @@ $("#chatButton").click(function(){
|
|||
<!-- Billarea -->
|
||||
{% getAgencyBillStatus request.user.profile.agency as billstatus %}
|
||||
{% 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-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">Testphase abgelaufen</h5>
|
||||
</div>
|
||||
<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 class="modal-footer">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
$(document).ready(function(){
|
||||
$("#noaccess").modal("toggle");
|
||||
});
|
||||
|
||||
$(document).keydown(function(e) {
|
||||
console.log(e.keyCode);
|
||||
if (e.keyCode == 27) {
|
||||
window.location = window.location;
|
||||
}
|
||||
$(document).ready(function(){
|
||||
$("#noaccess").modal({
|
||||
backdrop: 'static',
|
||||
keyboard: false
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue