mirror of
https://gitlab.com/LazyLibrarian/LazyLibrarian.git
synced 2026-02-06 10:47:15 +00: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
27 lines
638 B
HTML
27 lines
638 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="fas fa-circle-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>
|