New: Network (if known) is shown on add series results

Fixed: Ended showing on add series results
This commit is contained in:
Mark McDowall 2014-06-23 15:54:24 -07:00
parent 9633afc612
commit 66873b04d4
2 changed files with 15 additions and 6 deletions

View File

@ -10,9 +10,14 @@
<div class="row">
<h2 class="series-title">
{{titleWithYear}}
{{#unless_eq status compare="continuing"}}
<span class="label label-important">Ended</span>
{{/unless_eq}}
<span class="labels">
<span class="label label-primary">{{network}}</span>
{{#unless_eq status compare="continuing"}}
<span class="label label-danger">Ended</span>
{{/unless_eq}}
</span>
</h2>
</div>
<div class="row new-series-overview x-overview">

View File

@ -40,9 +40,13 @@
padding-bottom : 20px;
.series-title {
.label {
margin-left: 15px;
vertical-align: middle;
.labels {
margin-left : 10px;
.label {
font-size : 12px;
vertical-align : middle;
}
}
.year {