mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 14:49:15 +00:00
15 lines
483 B
Twig
Executable file
15 lines
483 B
Twig
Executable file
<script type="text/javascript">
|
|
<!--
|
|
$(document).ready(function() {
|
|
$("body").css("cursor", "wait");
|
|
|
|
setTimeout(function(){
|
|
window.location = './?import';
|
|
}, {{ import.delay }} );
|
|
});
|
|
//-->
|
|
</script>
|
|
<div class="messages warning">
|
|
<p>{% trans "Download required for " %} {{ import.recordsDownloadRequired }} {% trans "records" %}.</p>
|
|
<p>{% trans "Downloading next " %} {{ import.recordsUnderDownload }} {% trans "articles, please wait" %}...</p>
|
|
</div>
|