rpiwebapp-public/templates/publisherView.html
2019-07-06 23:02:01 -07:00

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 %}