mirror of
https://github.com/lazylibrarian/LazyLibrarian.git
synced 2026-06-12 01:28:41 -04:00
* Date parsing optimised * Magazine date parsing additions * Only send valid ebook types to calibre * Hide buttons if user accounts not enabled * Text changes for consistency * Removed table length config option * Extended loglevels, restart job if interval changes * Remove the "ignore for 24hrs" cookie on manual version check * Added extra datetypes * Update to fontawesome 5.0.13 and use local copy * Recount series totals if a book status is changed * Added another icon * Reworked series member status changing * Remove unused fontawesome files * Local copies of js and css files * Audiobook numbering changes * Pycharm tidying * Keep authorid on series status change * Remember authorid when changing series status * Prefer non-ignored books when name-matching * Update author totals after changes to a series * Tidied up series name matching * Simplified csv import using a list of dicts * Reworked csv import to use iterator and single thread * Remove ununsed headers
32 lines
905 B
HTML
32 lines
905 B
HTML
<%inherit file="base.html"/>
|
|
<%def name="headIncludes()">
|
|
</%def>
|
|
<%def name="body()">
|
|
<p> </p>
|
|
<div id="shutdown" class="alert alert-info">
|
|
<h1>${title}</h1>
|
|
%if timer == 0:
|
|
<h2>${prefix} ${message}</h2>
|
|
%else:
|
|
<h2><i class="fas fa-circle-notch fa-spin"></i> ${prefix} ${message}</h2>
|
|
%endif
|
|
<h3 id="countdown"> </h3>
|
|
</div>
|
|
</%def>
|
|
<%def name="javascriptIncludes()">
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
var countdown = ${timer};
|
|
if (countdown > 0) {
|
|
setInterval(function() {
|
|
countdown--;
|
|
$('#countdown').html('Refreshing in '+countdown+' seconds');
|
|
if (countdown <= 0) {
|
|
window.location = 'index';
|
|
}
|
|
}, 1000);
|
|
}
|
|
});
|
|
</script>
|
|
</%def>
|