diff --git a/Areas/Satpel/Controllers/DashboardController.cs b/Areas/Satpel/Controllers/DashboardController.cs new file mode 100644 index 0000000..4d0899c --- /dev/null +++ b/Areas/Satpel/Controllers/DashboardController.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BankSampahApp.Areas.Satpel.Controllers +{ + [Area("Satpel")] + public class DashboardController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} diff --git a/Areas/Satpel/Views/Dashboard/Index.cshtml b/Areas/Satpel/Views/Dashboard/Index.cshtml new file mode 100644 index 0000000..2d5db91 --- /dev/null +++ b/Areas/Satpel/Views/Dashboard/Index.cshtml @@ -0,0 +1,171 @@ +@{ + ViewData["Title"] = "Dashboard"; +} + +
+
+ Dashboard Satpel +
+
+ +
+ +
+
+ Selamat Datang + Satpel Kota M. Fransisco +
+
+ +
+ +
+
+
+
+ +
+
+
+ Total BSI + 1203 Unit +
+
+
+
+ Sudah Verifikasi + 145 Unit +
+
+ Belum Verifikasi + 5432 Unit +
+
+
+
+
+
+
+
+ +
+
+
+ Total BSU + 1203 Unit +
+
+
+
+ Sudah Aktif + 145 Unit +
+
+ Belum Aktif + 5432 Unit +
+
+ Ditolak + 5432 Unit +
+
+
+
+
+
+
+
+ +
+
+
+ Total Offtaker + 39 Unit +
+
+
+
+ Sudah Aktif + 145 Unit +
+
+ Belum Aktif + 5432 Unit +
+
+ Ditolak + 5432 Unit +
+
+
+
+
+
+
+
+ +
+
+
+ Total Nasabah + 2780 Unit +
+
+
+
+ Sudah Aktif + 145 Unit +
+
+ Belum Aktif + 5432 Unit +
+
+
+
+
+
+ +
+ +
+
+
+
Total Sampah BSI
+
5,812 Kg
+
+ + + 40% + + vs bulan kemarin +
+
+
+
+
+
Total Sampah BSU
+
5,812 Kg
+
+ + + 40% + + vs bulan kemarin +
+
+
+
+
+
Total Sampah Offtaker
+
89.4 Kg
+
+ + + 40% + + vs bulan kemarin +
+
+
+
\ No newline at end of file diff --git a/Areas/Satpel/Views/_ViewImports.cshtml b/Areas/Satpel/Views/_ViewImports.cshtml new file mode 100644 index 0000000..7c4f6f4 --- /dev/null +++ b/Areas/Satpel/Views/_ViewImports.cshtml @@ -0,0 +1,2 @@ +@using BankSampahApp +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers \ No newline at end of file diff --git a/Areas/Satpel/Views/_ViewStart.cshtml b/Areas/Satpel/Views/_ViewStart.cshtml new file mode 100644 index 0000000..4cf0c1a --- /dev/null +++ b/Areas/Satpel/Views/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "/Areas/Shared/Layouts/App/_Layout.cshtml"; +} diff --git a/Areas/Shared/Layouts/App/_Sidebar.cshtml b/Areas/Shared/Layouts/App/_Sidebar.cshtml index 659ea3f..925d7d9 100644 --- a/Areas/Shared/Layouts/App/_Sidebar.cshtml +++ b/Areas/Shared/Layouts/App/_Sidebar.cshtml @@ -59,7 +59,7 @@
  • - + Profil Bank Sampah @@ -98,13 +98,13 @@ else if (currentArea == "Nasabah") {
  • - + Dashboard
  • - + Profil Nasabah @@ -122,6 +122,39 @@
  • } + else if (currentArea == "Satpel") + { +
  • + + + Dashboard + +
  • +
  • + + + Data Bank Sampah + +
  • +
  • + + + Data Nasabah + +
  • +
  • + + + Data Offtaker + +
  • +
  • + + + Transaksi Laporan + +
  • + } else { } diff --git a/BankSampahApp.csproj b/BankSampahApp.csproj index 7e93517..dd62b0f 100644 --- a/BankSampahApp.csproj +++ b/BankSampahApp.csproj @@ -39,6 +39,8 @@ + +