Files
website-v2/templates/admin/report_polling.html
daveoconnor 69a652d066 Release reports refactor (#1996) (#1999)
Co-authored-by: Greg Kaleka <greg@gregkaleka.com>
2025-12-01 10:27:05 -08:00

16 lines
414 B
HTML

{% extends "admin/library_report_base.html" %}
{% block content %}
<div class="flex container my-4 mx-auto">
The {{ report_type }} is being generated. This page will refresh periodically, please wait.
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
setTimeout(function () {
window.location.reload()
}, 2000);
})
</script>
{% endblock content %}