mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
16 lines
414 B
HTML
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 %}
|