From 91d9a6a0d7272fe6717f3fc9af6417be21d37571 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 22 Apr 2014 13:07:08 -0700 Subject: [PATCH] Move the generated date from the top of the page to the footer. It's useful reference information, but anyone who wants it will look for and find it. We don't need this front-and-center. --- devel/nmbug/nmbug-status | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/devel/nmbug/nmbug-status b/devel/nmbug/nmbug-status index a7c79206..b4f98294 100755 --- a/devel/nmbug/nmbug-status +++ b/devel/nmbug/nmbug-status @@ -312,18 +312,15 @@ _PAGES['html'] = HtmlPage(

{title}

-

-Generated: {date}
{blurb}

Views

-'''.format(date=datetime.datetime.utcnow().date(), - title=config['meta']['title'], +'''.format(title=config['meta']['title'], blurb=config['meta']['blurb'], encoding=_ENCODING, inter_message_padding='0.25em', border_radius='0.5em'), - footer='\n\n', + footer='

Generated: {date}\n\n'.format(date=datetime.datetime.utcnow().date()) ) if args.list_views: -- 2.26.2