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.
39 lines
914 B
39 lines
914 B
@model NzbDrone.Core.Model.StatsModel
|
|
|
|
@{
|
|
ViewBag.Title = "Stats";
|
|
}
|
|
|
|
@section HeaderContent
|
|
{
|
|
<style>
|
|
label
|
|
{
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
}
|
|
|
|
@Html.LabelFor(m => m.SeriesTotal):
|
|
@Html.DisplayTextFor(m => m.SeriesTotal)
|
|
<br/>
|
|
@Html.LabelFor(m => m.SeriesContinuing):
|
|
@Html.DisplayTextFor(m => m.SeriesContinuing)
|
|
<br/>
|
|
@Html.LabelFor(m => m.SeriesEnded):
|
|
@Html.DisplayTextFor(m => m.SeriesEnded)
|
|
<br/>
|
|
@Html.LabelFor(m => m.EpisodesTotal):
|
|
@Html.DisplayTextFor(m => m.EpisodesTotal)
|
|
<br/>
|
|
@Html.LabelFor(m => m.EpisodesOnDisk):
|
|
@Html.DisplayTextFor(m => m.EpisodesOnDisk)
|
|
<br/>
|
|
@Html.LabelFor(m => m.EpisodesMissing):
|
|
@Html.DisplayTextFor(m => m.EpisodesMissing)
|
|
<br/>
|
|
@Html.LabelFor(m => m.DownloadLastWeek):
|
|
@Html.DisplayTextFor(m => m.DownloadLastWeek)
|
|
<br/>
|
|
@Html.LabelFor(m => m.DownloadedLastMonth):
|
|
@Html.DisplayTextFor(m => m.DownloadedLastMonth) |