SARBase/templates/list_sar.html

32 lines
649 B
HTML
Raw Normal View History

2023-11-01 18:46:27 +00:00
{% extends "base.html" %}
{% block title %}
SAR Records
{% endblock %}
{% block content %}
<div id="dynamic-sar-list">
{% include 'dynamic-sar-list.html' %}
2023-11-19 21:08:19 +00:00
2023-11-01 18:46:27 +00:00
</div>
<script>
$(document).ready(function() {
function updateSarDetails() {
$.ajax({
url: '/update_sar_list',
type: 'GET',
success: function(data) {
$('#dynamic-sar-list').html(data); // Replace the content of the div
}
});
}
updateSarDetails(); // Do it once immediately
setInterval(updateSarDetails, 5000); // Then every 5 seconds
});
</script>
2023-11-01 18:46:27 +00:00
{% endblock %}