1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/viewsettings/viewsettings.template.html

41 lines
1.9 KiB
HTML
Raw Normal View History

2017-11-29 15:43:41 -05:00
<div class="formDialogContent smoothScrollY" style="padding-top:2em;">
2017-11-25 23:40:28 -05:00
<div class="dialogContentInner dialog-content-centered">
<form style="margin:auto;">
<div class="verticalSection">
2017-11-29 15:43:41 -05:00
<div class="selectContainer viewSetting hide" data-settingname="imageType">
2017-11-25 23:40:28 -05:00
<select is="emby-select" label="${LabelImageType}" class="selectImageType">
2017-11-29 15:43:41 -05:00
<option value="primary">${Primary}</option>
2017-11-25 23:40:28 -05:00
<option value="banner">${Banner}</option>
<option value="disc">${Disc}</option>
2018-09-12 19:26:21 +02:00
<option value="logo">${Logo}</option>
2017-11-25 23:40:28 -05:00
<option value="thumb">${Thumb}</option>
2018-09-12 19:26:21 +02:00
<option value="list">${List}</option>
2017-11-25 23:40:28 -05:00
</select>
</div>
2018-09-12 19:26:21 +02:00
<div class="checkboxContainer viewSetting viewSetting-checkboxContainer hide chkTitleContainer" data-settingname="showTitle">
2017-11-25 23:40:28 -05:00
<label>
2017-11-29 15:43:41 -05:00
<input is="emby-checkbox" type="checkbox" />
2017-11-25 23:40:28 -05:00
<span>${ShowTitle}</span>
</label>
</div>
2018-09-12 19:26:21 +02:00
<div class="checkboxContainer viewSetting viewSetting-checkboxContainer hide chkYearContainer" data-settingname="showYear">
2017-11-25 23:40:28 -05:00
<label>
2017-11-29 15:43:41 -05:00
<input is="emby-checkbox" type="checkbox" />
2017-11-25 23:40:28 -05:00
<span>${ShowYear}</span>
</label>
</div>
2017-11-29 15:43:41 -05:00
<div class="checkboxContainer viewSetting viewSetting-checkboxContainer hide" data-settingname="groupBySeries">
<label>
<input is="emby-checkbox" type="checkbox" />
<span>${GroupBySeries}</span>
</label>
</div>
2017-11-25 23:40:28 -05:00
</div>
</form>
</div>
</div>