mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 23:42:37 -07:00
Add message to complete setup wizard
This commit is contained in:
parent
90849f9196
commit
dcb56cfd20
2 changed files with 4 additions and 1 deletions
|
@ -27,6 +27,8 @@
|
||||||
<div class="text-muted" id="dashboard-checking-activity"><i class="fa fa-refresh fa-spin"></i> Checking for activity...</div>
|
<div class="text-muted" id="dashboard-checking-activity"><i class="fa fa-refresh fa-spin"></i> Checking for activity...</div>
|
||||||
% elif config['pms_is_cloud']:
|
% elif config['pms_is_cloud']:
|
||||||
<div id="dashboard-no-activity" class="text-muted">Plex Cloud server is sleeping.</div>
|
<div id="dashboard-no-activity" class="text-muted">Plex Cloud server is sleeping.</div>
|
||||||
|
% elif not config['first_run_complete']:
|
||||||
|
<div id="dashboard-no-activity" class="text-muted">The Tautulli setup wizard has not been completed. Please click <a href="welcome">here</a> to go to the setup wizard.</div>
|
||||||
% else:
|
% else:
|
||||||
<div id="dashboard-no-activity" class="text-muted">There was an error communicating with your Plex Server.
|
<div id="dashboard-no-activity" class="text-muted">There was an error communicating with your Plex Server.
|
||||||
% if _session['user_group'] == 'admin':
|
% if _session['user_group'] == 'admin':
|
||||||
|
|
|
@ -176,7 +176,8 @@ class WebInterface(object):
|
||||||
"home_refresh_interval": plexpy.CONFIG.HOME_REFRESH_INTERVAL,
|
"home_refresh_interval": plexpy.CONFIG.HOME_REFRESH_INTERVAL,
|
||||||
"pms_name": plexpy.CONFIG.PMS_NAME,
|
"pms_name": plexpy.CONFIG.PMS_NAME,
|
||||||
"pms_is_cloud": plexpy.CONFIG.PMS_IS_CLOUD,
|
"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)
|
return serve_template(templatename="index.html", title="Home", config=config)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue