ProjectLighthouse/ProjectLighthouse.Servers.Website/Pages/Partials/AdminPanelStatisticPartial.cshtml

17 lines
No EOL
465 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="/admin/@Model.ViewAllEndpoint">@Model.StatisticNamePlural</a>
</h2>
}
else
{
<h2>@Model.StatisticNamePlural</h2>
}
<h3>@Model.Count</h3>
</div>
</div>