@using Project_Unite.Models; @using Microsoft.AspNet.Identity; @{ ViewBag.Title = "Administration Control Panel"; var db = new ApplicationDbContext(); }
Welcome to the ShiftOS Administration Control Panel. To begin administrating, select an option from the left.
| Current user: | @Html.UserLink(User.Identity.GetUserId()) |
| Users: | @db.Users.Count() |
| Forum Categories: | @db.ForumCategories.Count() |
| Posts: | @db.ForumPosts.Count() |
| Topics: | @db.ForumTopics.Count() |
| Skins: | @db.Skins.Count() |
| Releases: | @db.Downloads.Count() |
You can add new features to the website by modifying our GitHub repository. If you are a ShiftOS developer, chances are you have write access to the repository. If not, please contact Michael.
To clone the repository, use this command:
@Html.Markdown(@"```bash git clone https://github.com/MichaelTheShifter/Project-Unite ```")Your changes will be applied after you push your commits to this repository, or your pull request gets merged.