jellyfin-web/dashboard-ui/useredit.html

161 lines
8.8 KiB
HTML
Raw Normal View History

2016-09-09 19:21:00 -07:00
<div id="editUserPage" data-role="page" class="page type-interior userProfilesPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Users" data-require="scripts/useredit,emby-input,emby-checkbox,emby-button">
2013-02-20 18:33:05 -07:00
2017-05-06 12:42:17 -07:00
<div>
2016-03-15 22:33:31 -07:00
<div class="content-primary">
2014-07-19 21:46:29 -07:00
2016-03-15 22:33:31 -07:00
<div data-role="controlgroup" data-type="horizontal" class="localnav" id="userProfileNavigation" data-mini="true">
<a href="#" data-role="button" class="ui-btn-active">${TabProfile}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userlibraryaccess.html', true);">${TabAccess}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userparentalcontrol.html', true);">${TabParentalControl}</a>
<a href="#" data-role="button" onclick="Dashboard.navigate('userpassword.html', true);">${TabPassword}</a>
</div>
<p class="lnkEditUserPreferencesContainer">
2016-03-15 22:33:31 -07:00
<a class="lnkEditUserPreferences" href="#" target="_blank">${ButtonEditOtherUserPreferences}</a>
</p>
<form class="editUserProfileForm">
2016-06-06 17:44:15 -07:00
<div class="disabledUserBanner" style="display: none;">
2016-03-15 22:33:31 -07:00
<div class="btn btnDarkAccent btnStatic">
<div>
${HeaderThisUserIsCurrentlyDisabled}
</div>
2016-06-06 17:44:15 -07:00
<div style="margin-top: 5px;">
2016-03-15 22:33:31 -07:00
${MessageReenableUser}
</div>
</div>
2016-03-15 22:33:31 -07:00
</div>
2016-06-06 17:44:15 -07:00
<div id="fldUserName" class="inputContainer">
<input is="emby-input" id="txtUserName" required type="text" label="${LabelName}" />
</div>
2016-07-07 18:02:10 -07:00
<div id="fldConnectInfo" style="display: none;">
<div class="paperList" style="padding: 1em; border-radius: 5px;">
<div class="inputContainer">
<input is="emby-input" id="txtConnectUserName" type="text" label="${LabelConnectUserName}" />
<div class="fieldDescription">
<div>${LabelConnectUserNameHelp}</div>
<div style="margin-top: .75em;">
<a href="http://emby.media/connect" target="_blank">${ButtonLearnMoreAboutEmbyConnect}</a>
2016-02-08 22:45:33 -07:00
</div>
2014-09-14 10:12:47 -07:00
</div>
2016-03-15 22:33:31 -07:00
</div>
2016-07-07 18:02:10 -07:00
</div>
</div>
<br />
2016-09-09 19:21:00 -07:00
<label class="checkboxContainer">
<input type="checkbox" is="emby-checkbox" id="chkIsAdmin" />
<span>${OptionAllowUserToManageServer}</span>
</label>
2016-04-09 12:04:14 -07:00
<div id="featureAccessFields">
2016-09-09 19:21:00 -07:00
<h3 class="paperListLabel">${HeaderFeatureAccess}</h3>
<div class="checkboxList paperList" style="padding:.5em 1em;">
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableContentDeletion" />
<span>${OptionAllowDeleteLibraryContent}</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableLiveTvAccess" />
<span>${OptionAllowBrowsingLiveTv}</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" id="chkManageLiveTv" />
<span>${OptionAllowManageLiveTv}</span>
</label>
2016-04-09 12:04:14 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
<div>
2016-04-09 12:04:14 -07:00
<br />
2016-09-09 19:21:00 -07:00
<h3 class="paperListLabel">${HeaderPlayback}</h3>
<div class="checkboxList paperList" style="padding:.5em 1em;">
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableMediaPlayback" />
<span>${OptionAllowMediaPlayback}</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableAudioPlaybackTranscoding" />
<span>${OptionAllowAudioPlaybackTranscoding}</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableVideoPlaybackTranscoding" />
<span>${OptionAllowVideoPlaybackTranscoding}</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableVideoPlaybackRemuxing" />
<span>${OptionAllowVideoPlaybackRemuxing}</span>
</label>
2016-04-09 12:04:14 -07:00
</div>
2016-03-15 22:33:31 -07:00
<div class="fieldDescription">${OptionAllowMediaPlaybackTranscodingHelp}</div>
</div>
<div>
2016-04-09 12:04:14 -07:00
<br />
2016-09-09 19:21:00 -07:00
<h3 class="checkboxListLabel">${HeaderRemoteControl}</h3>
<div class="checkboxList paperList" style="padding:.5em 1em;">
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableRemoteControlOtherUsers" />
<span>${OptionAllowRemoteControlOthers}</span>
</label>
<label>
<input type="checkbox" is="emby-checkbox" id="chkRemoteControlSharedDevices" />
<span>${OptionAllowRemoteSharedDevices}</span>
</label>
2016-04-09 12:04:14 -07:00
</div>
2016-03-15 22:33:31 -07:00
<div class="fieldDescription">${OptionAllowRemoteSharedDevicesHelp}</div>
</div>
<div>
2016-04-09 12:04:14 -07:00
<br />
2017-04-25 11:22:38 -07:00
<h3 class="checkboxListLabel">${Downloading}</h3>
2016-09-09 19:21:00 -07:00
<div class="checkboxList paperList" style="padding:.5em 1em;">
<label>
2017-04-25 11:22:38 -07:00
<input type="checkbox" is="emby-checkbox" id="chkEnableDownloading" />
<span>${OptionAllowContentDownloading}</span>
2016-09-09 19:21:00 -07:00
</label>
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableSyncTranscoding" />
<span>${OptionAllowSyncTranscoding}</span>
</label>
2016-04-09 12:04:14 -07:00
</div>
<br />
2016-03-15 22:33:31 -07:00
</div>
2016-09-09 19:21:00 -07:00
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" id="chkEnableSharing" />
<span>${OptionAllowLinkSharing}</span>
</label>
<div class="fieldDescription checkboxFieldDescription sharingHelp"></div>
2016-03-15 22:33:31 -07:00
</div>
2016-09-09 19:21:00 -07:00
<div class="checkboxContainer checkboxContainer-withDescription" id="fldIsEnabled">
<label>
<input type="checkbox" is="emby-checkbox" id="chkDisabled" />
<span>${OptionDisableUser}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${OptionDisableUserHelp}</div>
2016-03-15 22:33:31 -07:00
</div>
2016-09-09 19:21:00 -07:00
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" id="chkDisableUserPreferences" />
<span>${OptionDisableUserPreferences}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${OptionDisableUserPreferencesHelp}</div>
2016-03-15 22:33:31 -07:00
</div>
2016-09-09 19:21:00 -07:00
<div class="checkboxContainer checkboxContainer-withDescription" id="fldIsHidden">
<label>
<input type="checkbox" is="emby-checkbox" id="chkIsHidden" />
<span>${OptionHideUser}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${OptionHideUserFromLoginHelp}</div>
2016-03-15 22:33:31 -07:00
</div>
<br />
2016-07-07 18:02:10 -07:00
<div>
2016-09-13 10:49:13 -07:00
<button is="emby-button" type="submit" class="raised button-submit block">
<span>${ButtonSave}</span>
</button>
2015-06-25 18:10:56 -07:00
2016-09-13 10:49:13 -07:00
<button is="emby-button" type="button" class="raised button-cancel block btnCancel" onclick="history.back();">
<span>${ButtonCancel}</span>
</button>
2016-07-07 18:02:10 -07:00
</div>
2016-03-15 22:33:31 -07:00
</form>
2013-02-20 18:33:05 -07:00
</div>
</div>
2016-03-15 22:33:31 -07:00
</div>