From f4694cac71a2f11ae9393d60954a28de82473af4 Mon Sep 17 00:00:00 2001 From: Michael Croes Date: Tue, 18 Jul 2023 22:07:36 +0200 Subject: [PATCH] Add status page stub --- SupportManager.Web/Pages/Status/Index.cshtml | 22 +++++++++++++++++++ .../Pages/Status/Index.cshtml.cs | 9 ++++++++ 2 files changed, 31 insertions(+) create mode 100644 SupportManager.Web/Pages/Status/Index.cshtml create mode 100644 SupportManager.Web/Pages/Status/Index.cshtml.cs diff --git a/SupportManager.Web/Pages/Status/Index.cshtml b/SupportManager.Web/Pages/Status/Index.cshtml new file mode 100644 index 0000000..6fe503d --- /dev/null +++ b/SupportManager.Web/Pages/Status/Index.cshtml @@ -0,0 +1,22 @@ +@page +@model SupportManager.Web.Pages.Status.IndexModel +@{ + ViewBag.Title = "Status"; +} + +
+
+
+
+ Teams +
+
+
+
+ No team data available. +
+
+
+
+
+
diff --git a/SupportManager.Web/Pages/Status/Index.cshtml.cs b/SupportManager.Web/Pages/Status/Index.cshtml.cs new file mode 100644 index 0000000..c4f0c47 --- /dev/null +++ b/SupportManager.Web/Pages/Status/Index.cshtml.cs @@ -0,0 +1,9 @@ +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace SupportManager.Web.Pages.Status +{ + public class IndexModel : PageModel + { + + } +}