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

36 lines
1.4 KiB
HTML
Raw Normal View History

2017-11-25 23:40:28 -05:00
<div class="formDialogContent smoothScrollY">
<div class="dialogContentInner dialog-content-centered">
<form style="margin:auto;">
<div class="verticalSection">
<h2 class="sectionTitle">
${HeaderPosterOptions}
</h2>
<div class="selectContainer viewSetting hide" data-settingname="imagetype">
<select is="emby-select" label="${LabelImageType}" class="selectImageType">
<option value="">${Primary}</option>
<option value="banner">${Banner}</option>
<option value="disc">${Disc}</option>
<option value="thumb">${Thumb}</option>
</select>
</div>
<div class="checkboxContainer viewSetting hide" data-settingname="showtitle">
<label>
<input is="emby-checkbox" type="checkbox" id="chkShowTitle" />
<span>${ShowTitle}</span>
</label>
</div>
<div class="checkboxContainer viewSetting hide" data-settingname="showyear">
<label>
<input is="emby-checkbox" type="checkbox" id="chkShowYear" />
<span>${ShowYear}</span>
</label>
</div>
</div>
</form>
</div>
</div>