diff --git a/ogcp/templates/dashboard.html b/ogcp/templates/dashboard.html
index a84ae4d..e1d9dc4 100644
--- a/ogcp/templates/dashboard.html
+++ b/ogcp/templates/dashboard.html
@@ -21,6 +21,14 @@
{{ time_dict['boot'] }}
+
+ -
+ {{ _('ogServer uptime') }}
+
+ -
+
{{ time_dict['start'] }}
+
+
-
{{ _('Connected clients (ogClient)') }}
diff --git a/ogcp/views.py b/ogcp/views.py
index 01b7a0f..d8d76c5 100644
--- a/ogcp/views.py
+++ b/ogcp/views.py
@@ -242,7 +242,8 @@ def index():
timestamp = datetime.datetime.fromtimestamp(stats.get('time').get('now'))
now = timestamp.strftime('%Y-%m-%d %H:%M:%S')
boot = display_time(stats.get('time').get('boot'))
- time_dict = {'now': now, 'boot': boot}
+ start = display_time(stats.get('time').get('start'))
+ time_dict = {'now': now, 'boot': boot, 'start': start}
return render_template('dashboard.html', clients=clients,
images=images, disk=disk, colsize="6",
oglive_list=oglive_list, stats=stats,