diff --git a/frontend/pages/backend/[backend]/index.vue b/frontend/pages/backend/[backend]/index.vue
index 6f0e6768..a3a7942d 100644
--- a/frontend/pages/backend/[backend]/index.vue
+++ b/frontend/pages/backend/[backend]/index.vue
@@ -38,6 +38,9 @@
+
+
+
diff --git a/frontend/pages/backend/[backend]/sessions.vue b/frontend/pages/backend/[backend]/sessions.vue
new file mode 100644
index 00000000..03a9c6ca
--- /dev/null
+++ b/frontend/pages/backend/[backend]/sessions.vue
@@ -0,0 +1,127 @@
+
+
+
+
+ Backends
+ -
+ {{ backend }}
+ : Sessions
+
+
+
+
+
+ Show backend's sessions that are currently active.
+
+
+
+
+
+
+
+ Requesting active play sessions. Please wait...
+
+
+
+
+
+ There are no active play sessions currently running.
+
+
+
+
+
+
+
+
+
+ | User |
+ Title |
+ State |
+ Progress at |
+
+
+
+
+ | {{ item.user_name }} |
+
+
+ |
+ {{ item.session_state }} |
+ {{ formatDuration(item.item_offset_at) }} |
+
+
+
+
+
+
+
+
+
diff --git a/frontend/utils/index.js b/frontend/utils/index.js
index e932dc27..d41a141d 100644
--- a/frontend/utils/index.js
+++ b/frontend/utils/index.js
@@ -255,7 +255,6 @@ const makeGUIDLink = (type, source, guid, data) => {
* @returns {string} The formatted duration.
*/
const formatDuration = (milliseconds) => {
- console.log(milliseconds)
milliseconds = parseInt(milliseconds)
let seconds = Math.floor(milliseconds / 1000);
let minutes = Math.floor(seconds / 60);