mirror of
https://github.com/lazylibrarian/LazyLibrarian.git
synced 2026-06-12 09:35:37 -04:00
31 lines
653 B
HTML
31 lines
653 B
HTML
<%inherit file="base.html"/>
|
|
<%!
|
|
import lazylibrarian
|
|
%>
|
|
|
|
<%def name="headIncludes()">
|
|
|
|
</%def>
|
|
|
|
<%def name="body()">
|
|
<p> </p>
|
|
<div id="waiting" class="alert alert-info">
|
|
<h1><i class="fa fa-circle-o-notch fa-spin"></i> ${message}</h1>
|
|
<h2 id="countdown">${lazylibrarian.UPDATE_MSG}</h2>
|
|
</div>
|
|
</%def>
|
|
|
|
<%def name="javascriptIncludes()">
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
var countdown = ${timer};
|
|
setInterval(function() {
|
|
countdown--;
|
|
if (countdown <= 0) {
|
|
window.location = 'index';
|
|
}
|
|
}, 1000);
|
|
});
|
|
</script>
|
|
</%def>
|