From f8fd937d3aa902186ac4fc885ce536119a55b1ad Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 7 May 2017 11:31:31 -0400 Subject: ACP redesign --- Project-Unite/Views/Admin/Index.cshtml | 87 ++++++++++++++++++++++++++++++---- 1 file changed, 79 insertions(+), 8 deletions(-) (limited to 'Project-Unite/Views') diff --git a/Project-Unite/Views/Admin/Index.cshtml b/Project-Unite/Views/Admin/Index.cshtml index 815a20b..6547bd5 100644 --- a/Project-Unite/Views/Admin/Index.cshtml +++ b/Project-Unite/Views/Admin/Index.cshtml @@ -1,14 +1,85 @@ - +@using Project_Unite.Models; +@using Microsoft.AspNet.Identity; @{ ViewBag.Title = "Administration Control Panel"; + var db = new ApplicationDbContext(); } -

Wow, an actual index page.

+
+
+
+

Navigation

- + +
+
+
+
+

Administration Control Panel

+ +

Welcome to the ShiftOS Administration Control Panel. To begin administrating, select an option from the left.

+ +

System status

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
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()
+ +
+ +

Shifting the website

+ +

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.

+
+
+
+
+
\ No newline at end of file -- cgit v1.2.3