mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Add device token to android app notifier config
This commit is contained in:
parent
d18c2ffddb
commit
8e13e2deb2
4 changed files with 27 additions and 29 deletions
|
@ -526,6 +526,12 @@ textarea.form-control:focus {
|
|||
text-align: center;
|
||||
pointer-events: none;
|
||||
}
|
||||
.form-control[readonly] {
|
||||
background-color: #555;
|
||||
}
|
||||
.form-control[readonly]:focus {
|
||||
background-color: #fff;
|
||||
}
|
||||
.poster {
|
||||
position: relative;
|
||||
height: 225px;
|
||||
|
@ -3037,12 +3043,6 @@ a:hover .overlay-refresh-image:hover {
|
|||
#plex-log-levels label {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#api_key.form-control[readonly] {
|
||||
background-color: #555;
|
||||
}
|
||||
#api_key.form-control[readonly]:focus {
|
||||
background-color: #fff;
|
||||
}
|
||||
#plexpy-notifiers-table .friendly_name,
|
||||
#notifier-config-modal span.notifier_id {
|
||||
color: #777;
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<label for="${item['name']}">${item['label']}</label>
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<input type="${item['input_type']}" class="form-control" id="${item['name']}" name="${item['name']}" value="${item['value']}" size="30">
|
||||
<input type="${item['input_type']}" class="form-control" id="${item['name']}" name="${item['name']}" value="${item['value']}" size="30" ${'readonly' if item.get('readonly') else ''}>
|
||||
% if item['name'] == 'osx_notify_app':
|
||||
<a href="javascript:void(0)" id="osxnotifyregister">Register</a>
|
||||
% endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue