You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/UI/SeasonPass/SeriesLayoutTemplate.html

43 lines
1.5 KiB

<div class="seasonpass-series">
<div class="row">
<div class="span11">
<i class="icon-chevron-right x-expander expander pull-left"/>
<span class="title span5">
<a href="{{route}}">
{{title}}
</a>
</span>
<span class="span3">
<select class="x-season-select season-select">
<option value="-1">Select season...</option>
{{#each seasons.models}}
{{#if_eq attributes.seasonNumber compare="0"}}
<option value="{{attributes.seasonNumber}}">Specials</option>
{{else}}
<option value="{{attributes.seasonNumber}}">Season {{attributes.seasonNumber}}</option>
{{/if_eq}}
{{/each}}
</select>
<span class="help-inline">
<i class="icon-question-sign" title="Selecting a season will unmonitor all previous seasons"/>
</span>
</span>
<button class="btn x-latest">Latest</button>
<span class="help-inline">
<i class="icon-question-sign" title="Will quickly select the latest season as first monitored"/>
</span>
</div>
</div>
<div class="row">
<div class="span11">
<div class="x-season-grid season-grid"></div>
</div>
</div>
</div>