Tweak/fix the list template in the admin UI

This commit is contained in:
Thomas Sileo
2019-10-28 22:38:29 +01:00
parent e611d61739
commit 7c4e6732c9
2 changed files with 10 additions and 2 deletions

View File

@@ -581,7 +581,11 @@ def admin_list(name: str) -> _Response:
return htmlify(
render_template(
tpl, inbox_data=inbox_data, older_than=older_than, newer_than=newer_than
tpl,
inbox_data=inbox_data,
older_than=older_than,
newer_than=newer_than,
list_name=name,
)
)