mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-13 20:41:04 +00:00
16 lines
482 B
Twig
16 lines
482 B
Twig
|
<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>
|