mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-16 02:02:58 -07:00
Fix some notifier text
This commit is contained in:
parent
270d4f510a
commit
eac31d10f1
2 changed files with 6 additions and 6 deletions
|
@ -17,7 +17,7 @@
|
|||
% if notifier['agent_name'] == 'scripts':
|
||||
<li role="presentation"><a href="#tabs-notify_triggers" aria-controls="tabs-notify_triggers" role="tab" data-toggle="tab">Script Triggers</a></li>
|
||||
<li role="presentation"><a href="#tabs-notify_text" aria-controls="tabs-notify_text" role="tab" data-toggle="tab">Script Arguments</a></li>
|
||||
<li role="presentation"><a href="#tabs-test_notifications" aria-controls="tabs-test_notifications" role="tab" data-toggle="tab">Test Scripts</a></li>
|
||||
<li role="presentation"><a href="#tabs-test_notifications" aria-controls="tabs-test_notifications" role="tab" data-toggle="tab">Test Script</a></li>
|
||||
% else:
|
||||
<li role="presentation"><a href="#tabs-notify_triggers" aria-controls="tabs-notify_triggers" role="tab" data-toggle="tab">Notification Triggers</a></li>
|
||||
<li role="presentation"><a href="#tabs-notify_text" aria-controls="tabs-notify_text" role="tab" data-toggle="tab">Notification Text</a></li>
|
||||
|
@ -102,13 +102,13 @@
|
|||
</div>
|
||||
<div class="col-md-12" style="margin-top: 10px; padding-top: 10px; border-top: 1px solid #444;">
|
||||
<div class="form-group">
|
||||
<label for="friendly_name">Friendly Identifier</label>
|
||||
<label for="friendly_name">Description</label>
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<input type="text" class="form-control" id="friendly_name" name="friendly_name" value="${notifier['friendly_name']}" size="30">
|
||||
</div>
|
||||
</div>
|
||||
<p class="help-block">Optional: Enter a friendly identifier for the notification agent (e.g. Recently Added)</p>
|
||||
<p class="help-block">Optional: Enter a description to help identify this agent in the notification agents list.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -132,7 +132,7 @@ def available_notification_agents():
|
|||
'name': 'pushover',
|
||||
'id': AGENT_IDS['pushover']
|
||||
},
|
||||
{'label': 'Scripts',
|
||||
{'label': 'Script',
|
||||
'name': 'scripts',
|
||||
'id': AGENT_IDS['scripts']
|
||||
},
|
||||
|
@ -2360,14 +2360,14 @@ class SCRIPTS(Notifier):
|
|||
{'label': 'Script Folder',
|
||||
'value': self.config['script_folder'],
|
||||
'name': 'scripts_script_folder',
|
||||
'description': 'Enter the full path to your scripts folder.',
|
||||
'description': 'Enter the full path to your script folder.',
|
||||
'input_type': 'text',
|
||||
'refresh': True
|
||||
},
|
||||
{'label': 'Script File',
|
||||
'value': self.config['script'],
|
||||
'name': 'scripts_script',
|
||||
'description': 'Choose the script file to run.',
|
||||
'description': 'Select the script file to run.',
|
||||
'input_type': 'select',
|
||||
'select_options': self.list_scripts()
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue