diff --git a/SAS/TMSS/backend/src/tmss/tmssapp/views.py b/SAS/TMSS/backend/src/tmss/tmssapp/views.py
index 8291fe5a4cae1acff240ff6424d9364b1fdb91ec..9dbdcd912a46764f38e9de94992ca1ef8562f887 100644
--- a/SAS/TMSS/backend/src/tmss/tmssapp/views.py
+++ b/SAS/TMSS/backend/src/tmss/tmssapp/views.py
@@ -815,7 +815,8 @@ def public_schedule(request):
       background-color: #DDDDDD;
     }     
     </style>    
-    <title>LOFAR observing schedule</title>
+    <title>LOFAR observing schedule %sUTC</title>
+    <meta http-equiv="refresh" content="60">
     </head>
     <body>
     <table>
@@ -823,7 +824,7 @@ def public_schedule(request):
     </table>
     </body>
     </html>
-        ''' % (table_rows,)
+        ''' % (datetime.utcnow().strftime("%Y-%m-%d %H:%M"), table_rows,)
 
     return HttpResponse(html_doc, content_type='text/html')