ProjectLighthouse/ProjectLighthouse.Servers.Website/Pages/Partials/AdminPanelStatisticPartial.cshtml
2022-08-05 22:02:55 -04:00

24 lines
No EOL
618 B
Text

@model LBPUnion.ProjectLighthouse.Administration.AdminPanelStatistic
<div class="three wide column">
<div class="ui center aligned blue segment">
@if (Model.ViewAllEndpoint != null)
{
<h2>
<a href="@Model.ViewAllEndpoint">@Model.StatisticNamePlural</a>
</h2>
}
else
{
<h2>@Model.StatisticNamePlural</h2>
}
@if (Model.SecondStatistic == null)
{
<h3>@Model.Count</h3>
}
else
{
<h3>@Model.Count / @Model.SecondStatistic</h3>
}
</div>
</div>