Move the generated date from the top of the page to the footer.
authorCarl Worth <cworth@cworth.org>
Tue, 22 Apr 2014 20:07:08 +0000 (13:07 -0700)
committerW. Trevor King <wking@tremily.us>
Sat, 10 May 2014 17:43:28 +0000 (10:43 -0700)
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

index a7c79206621e8d21ac3305210be45eac54e902be..b4f982947636a5f8a935f219f1b48a59df46ac91 100755 (executable)
@@ -312,18 +312,15 @@ _PAGES['html'] = HtmlPage(
 </head>
 <body>
 <h2>{title}</h2>
-<p>
-Generated: {date}<br />
 {blurb}
 </p>
 <h3>Views</h3>
-'''.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='</body>\n</html>\n',
+    footer='<hr><p>Generated: {date}</body>\n</html>\n'.format(date=datetime.datetime.utcnow().date())
     )
 
 if args.list_views: