diff --git a/data/interfaces/default/index.html b/data/interfaces/default/index.html index 55e7b509..ea30ce90 100644 --- a/data/interfaces/default/index.html +++ b/data/interfaces/default/index.html @@ -27,6 +27,8 @@
Checking for activity...
% elif config['pms_is_cloud']:
Plex Cloud server is sleeping.
+ % elif not config['first_run_complete']: +
The Tautulli setup wizard has not been completed. Please click here to go to the setup wizard.
% else:
There was an error communicating with your Plex Server. % if _session['user_group'] == 'admin': diff --git a/plexpy/webserve.py b/plexpy/webserve.py index 614cb34d..0b920226 100644 --- a/plexpy/webserve.py +++ b/plexpy/webserve.py @@ -176,7 +176,8 @@ class WebInterface(object): "home_refresh_interval": plexpy.CONFIG.HOME_REFRESH_INTERVAL, "pms_name": plexpy.CONFIG.PMS_NAME, "pms_is_cloud": plexpy.CONFIG.PMS_IS_CLOUD, - "update_show_changelog": plexpy.CONFIG.UPDATE_SHOW_CHANGELOG + "update_show_changelog": plexpy.CONFIG.UPDATE_SHOW_CHANGELOG, + "first_run_complete": plexpy.CONFIG.FIRST_RUN_COMPLETE } return serve_template(templatename="index.html", title="Home", config=config)