From 20330437ea639ef6c57d3bf14f74ea0cdaaa7702 Mon Sep 17 00:00:00 2001 From: Zergling_man Date: Mon, 25 Jul 2022 10:32:03 +1000 Subject: [PATCH] ... and date --- main/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/views.py b/main/views.py index 55c922a..d221a20 100644 --- a/main/views.py +++ b/main/views.py @@ -68,7 +68,7 @@ def articles(): out=[] for k,v in arts.items(): out.append(f'

{k}

\n'+ '
\n'.join([f'{l[1] or l[0]}' for l in v])) - return {'title':'Articles','content':'

'+('

\n

'.join(out))+'

','date':'2022/04/11'} + return {'title':'Articles','content':'

'+('

\n

'.join(out))+'

','date':'2022/07/25'} def redirect(req,src): return HttpResponse(status=302,headers={'Location':src.output})