From cafe35c595403024b9d2d23aa0d3f3a3289d66fd Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 31 Oct 2020 16:33:29 -0400 Subject: [PATCH] show pending in light font --- archivebox/index/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/index/html.py b/archivebox/index/html.py index 793a60af..48e517bb 100644 --- a/archivebox/index/html.py +++ b/archivebox/index/html.py @@ -140,7 +140,7 @@ def link_details_template(link: Link) -> str: ) or 'about:blank', 'extension': link.extension or 'html', 'tags': link.tags or 'untagged', - 'size': printable_filesize(link.archive_size) if link.archive_size else 'pending', + 'size': printable_filesize(link.archive_size) if link.archive_size else mark_safe('pending'), 'status': 'archived' if link.is_archived else 'not yet archived', 'status_color': 'success' if link.is_archived else 'danger', 'oldest_archive_date': ts_to_date(link.oldest_archive_date),