diff --git a/Controllers/ChecklistHarianController.cs b/Controllers/ChecklistHarianController.cs
index 661ac82..8d14f67 100644
--- a/Controllers/ChecklistHarianController.cs
+++ b/Controllers/ChecklistHarianController.cs
@@ -80,5 +80,26 @@ namespace BpsRwApp.Controllers
return Json(new { data });
}
+
+ [HttpGet]
+ public IActionResult Input()
+ {
+ return View();
+ }
+
+ [HttpGet]
+ public IActionResult InputTable()
+ {
+ var data = Enumerable.Range(1, 10)
+ .Select(i => new
+ {
+ no = i,
+ alamat_rumah = $"Jalan Buah No. {10 + i}",
+ rw = (3 + i).ToString("D2")
+ })
+ .ToList();
+
+ return Json(new { data });
+ }
}
}
diff --git a/Views/ChecklistHarian/Index.cshtml b/Views/ChecklistHarian/Index.cshtml
index 02bd538..95325f6 100644
--- a/Views/ChecklistHarian/Index.cshtml
+++ b/Views/ChecklistHarian/Index.cshtml
@@ -12,6 +12,13 @@
Data Checklist Rumah
+
+