mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-29 05:55:28 -04:00
remove finished/not finished spinners
This commit is contained in:
parent
9661c863b3
commit
c9162a6d09
10 changed files with 69 additions and 99 deletions
archivebox
|
@ -501,10 +501,10 @@ def printable_folders(folders: Dict[str, Optional["Link"]],
|
|||
elif html:
|
||||
from .index.html import main_index_template
|
||||
if with_headers:
|
||||
output = main_index_template(links, True)
|
||||
output = main_index_template(links)
|
||||
else:
|
||||
from .index.html import MINIMAL_INDEX_TEMPLATE
|
||||
output = main_index_template(links, True, MINIMAL_INDEX_TEMPLATE)
|
||||
output = main_index_template(links, template=MINIMAL_INDEX_TEMPLATE)
|
||||
return output
|
||||
elif csv:
|
||||
from .index.csv import links_to_csv
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue