carom-server/billard/templates/billard/index.html

16 lines
353 B
HTML
Raw Normal View History

2017-02-01 18:57:29 +01:00
{% extends 'billard/base.html' %}
2017-02-10 19:39:21 +01:00
{% load display_client %}
2017-02-01 18:57:29 +01:00
{% block title %}Location Data{% endblock %}
{% block content %}
2017-02-20 19:11:48 +01:00
{% include 'billard/index_ajax.html' %}
{% endblock %}
{% block js %}
<script type="text/javascript">
$( document ).ready(function() {
setInterval(function(){$( "#content" ).load( "#")},1000);
});
</script>
2017-02-01 18:57:29 +01:00
{% endblock %}