91 lines
5.0 KiB
C#
91 lines
5.0 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BankSampahApp.Controllers.Main
|
|
{
|
|
[Route("Main/[controller]/[action]")]
|
|
public class ReduksiSampahSatpelController : Controller
|
|
{
|
|
public IActionResult Index()
|
|
{
|
|
return View("~/Views/Main/ReduksiSampahSatpel/Index.cshtml");
|
|
}
|
|
|
|
[HttpGet]
|
|
public IActionResult Table()
|
|
{
|
|
var data = new[]
|
|
{
|
|
new {
|
|
periode = "Januari",
|
|
jumlah_rumah_memilah = "Kecamatan Kramatjati",
|
|
status = "<div class=\"badge badge-success badge-soft rounded-full\">DIVERIFIKASI SATPEL</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "Januari",
|
|
jumlah_rumah_memilah = "Kecamatan Kramatjati",
|
|
status = "<div class=\"badge badge-success badge-soft rounded-full\">DIVERIFIKASI SATPEL</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "Februari",
|
|
jumlah_rumah_memilah = "Kecamatan Pasar Rebo",
|
|
status = "<div class=\"badge badge-warning badge-soft rounded-full\">MENUNGGU VERIFIKASI</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "Maret",
|
|
jumlah_rumah_memilah = "Kecamatan Ciracas",
|
|
status = "<div class=\"badge badge-success badge-soft rounded-full\">DIVERIFIKASI SATPEL</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "April",
|
|
jumlah_rumah_memilah = "Kecamatan Makasar",
|
|
status = "<div class=\"px-2 py-1 bg-red-50 rounded-full inline-flex items-center justify-center\"><span class=\"text-red-600 text-xs font-semibold font-['Plus_Jakarta_Sans']\">BELUM DISETUJUI</span></div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "Mei",
|
|
jumlah_rumah_memilah = "Kecamatan Jatinegara",
|
|
status = "<div class=\"badge badge-success badge-soft rounded-full\">DIVERIFIKASI SATPEL</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "Juni",
|
|
jumlah_rumah_memilah = "Kecamatan Duren Sawit",
|
|
status = "<div class=\"badge badge-warning badge-soft rounded-full\">MENUNGGU VERIFIKASI</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "Juli",
|
|
jumlah_rumah_memilah = "Kecamatan Cipayung",
|
|
status = "<div class=\"badge badge-success badge-soft rounded-full\">DIVERIFIKASI SATPEL</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "Agustus",
|
|
jumlah_rumah_memilah = "Kecamatan Kembangan",
|
|
status = "<div class=\"px-2 py-1 bg-red-50 rounded-full inline-flex items-center justify-center\"><span class=\"text-red-600 text-xs font-semibold font-['Plus_Jakarta_Sans']\">BELUM DISETUJUI</span></div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "September",
|
|
jumlah_rumah_memilah = "Kecamatan Palmerah",
|
|
status = "<div class=\"badge badge-warning badge-soft rounded-full\">MENUNGGU VERIFIKASI</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
},
|
|
new {
|
|
periode = "Oktober",
|
|
jumlah_rumah_memilah = "Kecamatan Kebayoran Baru",
|
|
status = "<div class=\"badge badge-success badge-soft rounded-full\">DIVERIFIKASI SATPEL</div>",
|
|
gambar = "<a href=\"#\" class=\"btn bg-gray-500 text-white rounded-lg\"><i class=\"ph ph-file-text\"></i></a>",
|
|
}
|
|
|
|
};
|
|
|
|
return Json(new { data = data });
|
|
}
|
|
}
|
|
|
|
} |