This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/BirdsiteLive/Views/Statistics/Index.cshtml
2020-12-30 01:58:08 -05:00

12 lines
228 B
Plaintext

@model BirdsiteLive.Models.StatisticsModels.Statistics
@{
ViewBag.Title = "Statistics";
}
<h2>Statistics</h2>
<ul>
<li>Twitter Users: @Model.TwitterUserCount</li>
<li>Followers: @Model.FollowersCount</li>
</ul>