mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 19:38:20 -07:00
39 lines
1.6 KiB
HTML
39 lines
1.6 KiB
HTML
<div class="formDialogHeader">
|
|
<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon"></i></button>
|
|
<h3 class="formDialogHeaderTitle">
|
|
${Settings}
|
|
</h3>
|
|
</div>
|
|
<div class="formDialogContent smoothScrollY">
|
|
<form class="dialogContentInner dialog-content-centered" style="padding-top:2em;">
|
|
|
|
<h3 class="checkboxListLabel">${ShowIndicatorsFor}</h3>
|
|
<div class="checkboxList">
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="hd"/>
|
|
<span>${HDPrograms}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="live" data-default="true"/>
|
|
<span>${LiveBroadcasts}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="new"/>
|
|
<span>${NewEpisodes}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="premiere" data-default="true"/>
|
|
<span>${Premieres}</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkIndicator" data-type="repeat"/>
|
|
<span>${RepeatEpisodes}</span>
|
|
</label>
|
|
</div>
|
|
<br/>
|
|
<label>
|
|
<input type="checkbox" is="emby-checkbox" class="chkColorCodedBackgrounds" />
|
|
<span>${EnableColorCodedBackgrounds}</span>
|
|
</label>
|
|
</form>
|
|
</div> |