Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
mapqa
/
Views
/
Vst
/
View File Name :
_VstPartialView.cshtml
@using PagedList.Mvc; @model PagedList.IPagedList<RER_Project.DataAccess.Functions.FnGetVstList> @using RER_Project.Core.Helpers @using RER_Project.BusinessLayer.BusinessService @if (Model.Count > 0) { <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <div class="table-responsive" style="margin-top: 16px;"> <table class="footable table table-hover dataTables" data-page-size="10" data-filter=#filter> <thead> <tr> <th>Beneficiary Name</th> <th>Gender</th> <th>Beneficiary Contact</th> <th>Occupation Name</th> <th>Level/Model</th> <th>Name of Training Provider</th> <th>Action</th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td>@item.beneficiary_name</td> <td>@item.gender_name</td> <td>@item.contact</td> <td>@item.occupation_name</td> <td>@item.level</td> <td>@item.training_provider</td> <td> <a class="btn btn-default btn-xs" href="/vst/edit/@item.id" title="Edit"><i class="fa fa-edit"></i></a> <a class="btn btn-default btn-xs" href="/vst/detail/@item.id" title="Detail"><i class="fa fa-eye"></i></a> <a class="btn btn-default btn-xs" href="/vst/delete/@item.id" title="Delete"><i class="fa fa-trash"></i></a> </td> </tr> } </tbody> </table> <div align="center" style="margin-top;"> @if (Model.Count > 0) { @Html.PagedListPager(Model, page => Url.Action("Index", new { page, province = ViewBag.Province, district = ViewBag.District, municipality = ViewBag.Municipality, occupation = ViewBag.Occupation, training = ViewBag.Training }), PagedListRenderOptions.ClassicPlusFirstAndLast) } </div> </div> </div> </div> </div> </div> </div> } else { <center> <h3> No Data</h3></center> }