Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/27d9592b419420580f48b2d324b6c49ca2ec088d/NzbDrone.Web/Views/System/Stats.cshtml You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Web/Views/System/Stats.cshtml

41 lines
930 B

@model NzbDrone.Core.Model.StatsModel
@{
ViewBag.Title = "Stats";
}
@section HeaderContent
{
<style>
label
{
font-weight: bold;
}
</style>
}
<h2>Stats</h2>
@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)