From 32cf26884b4dcc7fa1aa26260d99689b922deedd Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 26 Oct 2023 11:05:51 -0700 Subject: [PATCH] Add system language and sqlite version to configuration table --- data/interfaces/default/configuration_table.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/data/interfaces/default/configuration_table.html b/data/interfaces/default/configuration_table.html index 676876d6..66d8ef40 100644 --- a/data/interfaces/default/configuration_table.html +++ b/data/interfaces/default/configuration_table.html @@ -11,6 +11,7 @@ DOCUMENTATION :: END <%! import os + import sqlite3 import sys import plexpy from plexpy import common, logger @@ -71,10 +72,18 @@ DOCUMENTATION :: END System Timezone: ${str(plexpy.SYS_TIMEZONE)} (${'UTC{}'.format(plexpy.SYS_UTC_OFFSET)}) + + System Language: + ${plexpy.SYS_LANGUAGE + (' (override {})'.format(plexpy.CONFIG.PMS_LANGUAGE) if plexpy.CONFIG.PMS_LANGUAGE else '')} + Python Version: ${sys.version} + + SQLite Version: + ${sqlite3.sqlite_version} + Resources: