diff --git a/.gitlab/.gitkeep b/.gitlab/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.gitlab/merge_request_templates/.gitkeep b/.gitlab/merge_request_templates/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.gitlab/merge_request_templates/Default.md b/.gitlab/merge_request_templates/Default.md new file mode 100644 index 0000000..3897c85 --- /dev/null +++ b/.gitlab/merge_request_templates/Default.md @@ -0,0 +1,28 @@ +# MERGE REQUEST + +## Summary + +(Summarize the changes that have been made) + +## Videos + +- Please upload videos if there are interactions included: e.g: progress bar, spinner, popup, drawer, etc +- Remove this section if not uploading Videos + +## Screenshots + +- Show whole browser screenshot with URL bar shown where the route is shown +- Remove this section if not uploading Screenshots + +## Redmine + +- Put any related links related to this Merge Request + +## Checklist + +Change the `[ ]` to `[x]` for each of these list that are applicable, remove any list item that are not applicable + +- [ ] I fixed|updated|added unit tests and integration tests for each feature (if applicable). +- [ ] No `error` nor `warning` in the console. +- [ ] I added videos for the developed feature / bug fix. (Please upload videos if there are interactions included: e.g: progress bar, spinner, popup, drawer, etc) +- [ ] I added screenshots of developed feature diff --git a/BpsRwApp.csproj b/BpsRwApp.csproj index a678f81..c3d7a58 100644 --- a/BpsRwApp.csproj +++ b/BpsRwApp.csproj @@ -15,6 +15,7 @@ + diff --git a/Controllers/DashboardController.cs b/Controllers/DashboardController.cs new file mode 100644 index 0000000..6ef89aa --- /dev/null +++ b/Controllers/DashboardController.cs @@ -0,0 +1,17 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BpsRw.Controllers +{ + public class DashboardController : Controller + { + public IActionResult Index() + { + return View(); + } + + public IActionResult Reports() + { + return View(); + } + } +} \ No newline at end of file diff --git a/Views/Dashboard/Index.cshtml b/Views/Dashboard/Index.cshtml new file mode 100644 index 0000000..98f37bb --- /dev/null +++ b/Views/Dashboard/Index.cshtml @@ -0,0 +1,4 @@ +@{ + Layout = "_LayoutApp"; + ViewData["Title"] = "Dashboard"; +} \ No newline at end of file diff --git a/Views/Shared/_Layout.cshtml b/Views/Shared/_Layout.cshtml index ef1ea73..f444d96 100644 --- a/Views/Shared/_Layout.cshtml +++ b/Views/Shared/_Layout.cshtml @@ -57,13 +57,13 @@ -