mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-14 01:02:59 -07:00
94 lines
No EOL
3.5 KiB
HTML
94 lines
No EOL
3.5 KiB
HTML
<%doc>
|
|
USAGE DOCUMENTATION :: PLEASE LEAVE THIS AT THE TOP OF THIS FILE
|
|
|
|
For Mako templating syntax documentation please visit: http://docs.makotemplates.org/en/latest/
|
|
|
|
Filename: edit_user.html
|
|
Version: 0.1
|
|
Variable names: data [list]
|
|
|
|
data :: Usable parameters
|
|
|
|
== Global keys ==
|
|
user Return the real Plex username
|
|
user_id Return the Plex user_id
|
|
friendly_name Returns the friendly edited Plex username
|
|
do_notify Returns bool value for whether the user should trigger notifications
|
|
|
|
DOCUMENTATION :: END
|
|
</%doc>
|
|
|
|
% if data is not None:
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="fa fa-remove"></i></button>
|
|
<h4 class="modal-title">Edit user <strong>${data['user']}</strong></h4>
|
|
</div>
|
|
<div class="modal-body" id="modal-text">
|
|
<fieldset>
|
|
<div class="form-group">
|
|
<label for="friendly_name">Friendly Name</label>
|
|
<div class="row">
|
|
<div class="col-xs-6">
|
|
<input type="text" class="form-control" id="friendly_name" name="friendly_name" value="${data['friendly_name']}" size="30">
|
|
</div>
|
|
</div>
|
|
<p class="help-block">Replace all occurances of the username with this name.</p>
|
|
</div>
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" id="do_notify" name="do_notify" value="1" ${data['do_notify']}> Enable notifications
|
|
</label>
|
|
<p class="help-block">Uncheck this if you do not want to receive notifications for this user's activity.</p>
|
|
</div>
|
|
</fieldset>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<div>
|
|
<span id="edit-user-status-message"></span>
|
|
<input type="button" id="save_user_name" class="btn btn-bright" value="Save">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
// Set new friendly name
|
|
$("#save_user_name").click(function() {
|
|
var friendly_name = $("#friendly_name").val();
|
|
var do_notify = 0;
|
|
if ($("#do_notify").is(":checked")) {
|
|
do_notify = 1;
|
|
}
|
|
|
|
% if data['user_id']:
|
|
$.ajax({
|
|
url: 'edit_user',
|
|
data: {user_id: '${data['user_id']}', friendly_name: friendly_name, do_notify: do_notify},
|
|
cache: false,
|
|
async: true,
|
|
success: function(data) {
|
|
$("#edit-user-status-message").html(data);
|
|
if ($.trim(friendly_name) !== '') {
|
|
$(".set-username").html(friendly_name);
|
|
}
|
|
}
|
|
});
|
|
% else:
|
|
$.ajax({
|
|
url: 'edit_user',
|
|
data: {user: '${data['user']}', friendly_name: friendly_name, do_notify: do_notify},
|
|
cache: false,
|
|
async: true,
|
|
success: function(data) {
|
|
$("#edit-user-status-message").html(data);
|
|
if ($.trim(friendly_name) !== '') {
|
|
$(".set-username").html(friendly_name);
|
|
}
|
|
}
|
|
});
|
|
% endif
|
|
});
|
|
</script>
|
|
|
|
% endif |