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
/
VITA
/
Views
/
WorkPlan
/
Edit File Name :
_MyActivitiesLevelTwoList.cshtml
@using PagedList.Mvc; @model PagedList.IPagedList<RER_Project.DataAccess.Functions.Fn_ActivityMonthWiseReport> @{ Layout = null; } @if (Model.Count > 0) { <div class="table-responsive" style="margin-top: 16px;"> @foreach (var group in Model.GroupBy(x => x.FiscalYear)) { <h4 style="background-color: #e9e9e9; padding: 8px 8px;">@group.Key</h4> <table class="footable table table-hover"> <thead> <tr> <th>Activity</th> <th>Shrawan</th> <th>Bhadra</th> <th>Asoj</th> <th>Karthik</th> <th>Mangshir</th> <th>Poush</th> <th>Magh</th> <th>Falgun</th> <th>Chaitra</th> <th>Baishakh</th> <th>Jestha</th> <th>Ashar</th> <th>Remarks</th> <th>Action</th> </tr> </thead> <tbody> @foreach (var item in group) { <tr> <td>@item.Activity</td> <td>@item.ShrawanQ / @item.Shrawan</td> <td>@item.BhadraQ / @item.Bhadra</td> <td>@item.AsojQ / @item.Aswin</td> <td>@item.KartikQ / @item.Kartik</td> <td>@item.MangsirQ / @item.Mansir</td> <td>@item.PoushQ / @item.Poush</td> <td>@item.MaghQ / @item.Magh</td> <td>@item.FalgunQ / @item.Falgun</td> <td>@item.ChaitraQ / @item.Chaitra</td> <td>@item.BaishakhQ / @item.Baishakh</td> <td>@item.JesthaQ / @item.Jestha</td> <td>@item.AsarQ / @item.Asar</td> <td>@item.PriorityActivityOne</td> <td> @if (item.ActivityMemberType == 1) { <a class="btn btn-default btn-xs" href="@("/activities/reporting/createother?activityId=" + item.ActivityId +"&fiscalYear="+group.Key +"&fyId="+item.FiscalYearId)"> <i class="fa fa-plus"></i> </a> } else { <a class="btn btn-default btn-xs" href="@("/activities/reporting/create?activityId=" + item.ActivityId +"&fiscalYear="+group.Key + "&assignedBy=" + item.AssignedBy)"> <i class="fa fa-plus"></i> </a> } </td> </tr> } </tbody> </table> } <div id="myPager" align="center"> @if (Model.Count > 0) { @Html.PagedListPager(Model, page => Url.Action("activities/leveltwo", new { page }), PagedListRenderOptions.ClassicPlusFirstAndLast) } </div> </div> } else { <div><center>No Data</center></div> }
Save