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
/
map
/
Views
/
Feek1Beneficiaries
/
Edit File Name :
_feek1BeneficiariesList.cshtml
@using PagedList.Mvc; @model PagedList.IPagedList<RER_Project.DataAccess.ViewModels.Feek1.Feek1BeneficiariesViewModel> @{ var coopId = ViewContext.RouteData.Values["Id"].ToString(); } <div class="table-responsive" style="margin-top: 16px;"> <table class="footable table table-hover" id="groupListTable"> <thead> <tr> <th>S.N.</th> <th>Name </th> <th>Province</th> <th>District</th> <th>Municipality</th> <th>Ward</th> <th>Ethnicity</th> <th>Start Date ( BS )</th> <th>End Date ( BS )</th> <th>Action</th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td> <center> @item.Mid </center> </td> <td>@item.ParticipantName </td> <td>@item.Province</td> <td>@item.District</td> <td>@item.Palika</td> <td>@item.WardNo</td> <td>@item.Ethnicity</td> <td>@item.Feek1BeneficiariesStartDateNepali</td> <td>@item.Feek1BeneficiariesEndDateNepali</td> <td> <a href="/feek1/beneficiaries/coop/@coopId/edit/@item.Id" style="font-size:15px;padding:5px"> <i class="fa fa-edit"></i></a> <a href="/feek1/beneficiaries/coop/@coopId/delete/@item.Id" style="font-size:15px;padding:5px"> <i class="fa fa-trash"></i></a> </td> </tr> } </tbody> </table> <div align="center"> @if (Model.Count > 0) { @Html.PagedListPager(Model, page => Url.Action("Index", new { page , name = ViewBag.Name, fromDate = ViewBag.FromDate, ethnicity = ViewBag.Ethnicity,toDate=ViewBag.ToDate }), PagedListRenderOptions.ClassicPlusFirstAndLast) } </div> </div>
Save