mirror of https://github.com/lidarr/Lidarr
Show yellow dot and season not monitored when no episode files and season isn't monitored
This commit is contained in:
parent
1a2ae4bd2c
commit
c5ae38638a
|
@ -162,6 +162,10 @@ footer {
|
|||
color : @successText;
|
||||
}
|
||||
|
||||
.status-warning {
|
||||
color : @warningText;
|
||||
}
|
||||
|
||||
.status-danger {
|
||||
color : @errorText;
|
||||
}
|
||||
|
|
|
@ -9,13 +9,17 @@
|
|||
{{/if}}
|
||||
|
||||
{{#if_eq episodeCount compare=0}}
|
||||
<i class="icon-nd-status season-status status-primary" title="No aired episodes"/>
|
||||
{{#if monitored}}
|
||||
<i class="icon-nd-status season-status status-primary" title="No aired episodes"/>
|
||||
{{else}}
|
||||
<i class="icon-nd-status season-status status-warning" title="Season is not monitored"/>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
{{#if_eq percentOfEpisodes compare=100}}
|
||||
<i class="icon-nd-status season-status status-success" title="{{episodeFileCount}}/{{episodeCount}} episodes downloaded"/>
|
||||
{{else}}
|
||||
<i class="icon-nd-status season-status status-danger" title="{{episodeFileCount}}/{{episodeCount}} episodes downloaded"/>
|
||||
{{/if_eq}}
|
||||
{{#if_eq percentOfEpisodes compare=100}}
|
||||
<i class="icon-nd-status season-status status-success" title="{{episodeFileCount}}/{{episodeCount}} episodes downloaded"/>
|
||||
{{else}}
|
||||
<i class="icon-nd-status season-status status-danger" title="{{episodeFileCount}}/{{episodeCount}} episodes downloaded"/>
|
||||
{{/if_eq}}
|
||||
{{/if_eq}}
|
||||
|
||||
<span class="season-actions pull-right">
|
||||
|
|
Loading…
Reference in New Issue