31 lines
758 B
HTML
31 lines
758 B
HTML
{% extends 'billard/base.html' %}
|
|
|
|
{% block title %}Standort{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="desk_data">
|
|
{% include 'billard/location_detail_ajax.html' %}
|
|
</div>
|
|
<div id="modal-wrapper">
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script type="text/javascript">
|
|
var interval;
|
|
$(document).ready(function() {
|
|
$.ajaxSetup({ cache: false });
|
|
interval = window.setInterval(refresh_page, 1000);
|
|
});
|
|
|
|
function refresh_page() {
|
|
$('#desk_data').load('#');
|
|
$('#modal-wrapper').load('{% url 'billard:account_modal' loc_pk=pk %}', function() {
|
|
if ( $('#accountsmodal').length ) {
|
|
window.clearInterval(interval);
|
|
$('#accountsmodal').modal('show');
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
{% endblock %} |