28 lines
543 B
HTML
28 lines
543 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
||
|
|
||
|
<script>
|
||
|
window.setInterval(function () {
|
||
|
$.ajax({
|
||
|
url: "comics",
|
||
|
type: "get",
|
||
|
data: {polling: true},
|
||
|
success: function(response) {
|
||
|
$("#publishers").html(response);
|
||
|
},
|
||
|
error: function(xhr) {
|
||
|
//Do Something to handle error
|
||
|
}
|
||
|
});
|
||
|
}, 5000);
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<ul id="publishers">
|
||
|
{% include "publisherList.html" %}
|
||
|
</ul>
|
||
|
{% endblock %}
|