From 1bc43a098188347915d4efdfa6261969fc73c8f1 Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Sat, 6 Sep 2008 10:56:11 -0300 Subject: [PATCH] Fix links to articles in the list view Signed-off-by: Alberto Bertogli --- blitiri.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blitiri.cgi b/blitiri.cgi index 8c6c6dc..bac048b 100755 --- a/blitiri.cgi +++ b/blitiri.cgi @@ -1068,7 +1068,7 @@ def render_artlist(articles, db, actyear = None): print template.get_main_header() print '

Articles

' for a in articles: - print '
  • %(title)s
  • ' \ + print '
  • %(title)s
  • ' \ % { 'url': blog_url, 'uuid': a.uuid, 'title': a.title, -- 2.43.0