mirror of
https://github.com/Radarr/Radarr
synced 2025-02-27 16:42:46 +00:00
New: Network (if known) is shown on add series results
Fixed: Ended showing on add series results
This commit is contained in:
parent
9633afc612
commit
66873b04d4
2 changed files with 15 additions and 6 deletions
|
@ -10,9 +10,14 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h2 class="series-title">
|
<h2 class="series-title">
|
||||||
{{titleWithYear}}
|
{{titleWithYear}}
|
||||||
|
|
||||||
|
<span class="labels">
|
||||||
|
<span class="label label-primary">{{network}}</span>
|
||||||
{{#unless_eq status compare="continuing"}}
|
{{#unless_eq status compare="continuing"}}
|
||||||
<span class="label label-important">Ended</span>
|
<span class="label label-danger">Ended</span>
|
||||||
{{/unless_eq}}
|
{{/unless_eq}}
|
||||||
|
</span>
|
||||||
|
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="row new-series-overview x-overview">
|
<div class="row new-series-overview x-overview">
|
||||||
|
|
|
@ -40,10 +40,14 @@
|
||||||
padding-bottom : 20px;
|
padding-bottom : 20px;
|
||||||
|
|
||||||
.series-title {
|
.series-title {
|
||||||
|
.labels {
|
||||||
|
margin-left : 10px;
|
||||||
|
|
||||||
.label {
|
.label {
|
||||||
margin-left: 15px;
|
font-size : 12px;
|
||||||
vertical-align : middle;
|
vertical-align : middle;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.year {
|
.year {
|
||||||
font-style : italic;
|
font-style : italic;
|
||||||
|
|
Loading…
Reference in a new issue