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
/
Home
/
Edit File Name :
_ActivityReportingList.cshtml
@using PagedList.Mvc; @model PagedList.IPagedList<RER_Project.DataAccess.ViewModels.WorkPlan.WorkPlanViewModel> <div class="table-bordered"> <table class="footable table table-hover dataTables" data-page-size="10" data-filter=#filter> <thead> <tr> <th>Fiscal Year</th> <th>Planned Activities</th> <th>Completed Activities</th> <th>Planned Budget</th> <th>Actual Expense</th> </tr> </thead> <tbody> @foreach (var item in Model[0].ActivityProgressList) { <tr> <td>@item.FiscalYear</td> <td>@item.PlannedActivities</td> <td>@item.CompletedActivities</td> <td>@item.PlannedBudget</td> <th>@item.ActualExpense</th> </tr> } </tbody> </table> </div> @if (Model[0].Fn_WorkPlanDetailViewList.Count > 0) { <div class="table-responsive" style="margin-top: 16px;"> @foreach (var group in Model[0].Fn_WorkPlanDetailViewList.GroupBy(x => x.FiscalYear)) { <h4 style="background-color: #e9e9e9; padding: 8px 8px;">@group.Key</h4> <table class="footable table table-hover dataTables" data-page-size="10" data-filter=#filter> <thead> <tr> <th>Component</th> <th>Sub Component</th> <th>Activity</th> <th>Unit</th> <th>Q1 Target vs Assigned vs Progress</th> <th>Q2 Target vs Assigned vs Progress</th> <th>Q3 Target vs Assigned vs Progress</th> <th>Q4 Target vs Assigned vs Progress</th> <th>Status</th> <th> </th> </tr> </thead> <tbody> @foreach (var item in Model[0].Fn_WorkPlanDetailViewList.Where(x => x.FiscalYear == group.Key)) { <tr> <td>@item.Component</td> <td>@item.SubComponent</td> <td>@item.UnitName</td> <td>@item.UnitName</td> <th>@item.FirstQuaterQuantity / @item.FirstQuaterAssign / @item.FirstQuaterProgress</th> <th>@item.SecondQuaterQuantity / @item.SecondQuaterAssign / @item.SecondQuaterProgress</th> <th>@item.ThirdQuaterQuantity / @item.ThirdQuaterAssign / @item.ThirdQuaterProgress</th> <th>@item.FourthQuaterQuantity/@item.FourthQuaterAssign/@item.FourthQuaterProgress</th> <th>@item.Status</th> <td> <img src="~/Images/plus.png" /> <div style="display:none"> <table class="ChildGrid footable table table-hover"> <tr> <th>Assigned To</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> </tr> @foreach (var order in Model[0].ActivityMonthWiseReports.Where(x => x.ActivityId == item.ActivityId)) { <tr> <td>@order.PriorityActivityOneSupportName</td> <td>@order.JanuaryQ / @order.January</td> <td>@order.FebruaryQ / @order.February</td> <td>@order.MarchQ / @order.March</td> <td>@order.AprilQ / @order.April</td> <td>@order.MayQ / @order.May</td> <td>@order.JuneQ / @order.June</td> <td>@order.JulyQ / @order.July</td> <td>@order.AugustQ / @order.August</td> <td>@order.SeptemberQ / @order.September</td> <td>@order.OctoberQ / @order.October</td> <td>@order.NovemberQ / @order.November</td> <td>@order.DecemberQ / @order.December</td> </tr> } </table> </div> </td> </tr> } </tbody> </table> } <div id="myPager" align="center"> @if (Model.Count > 0) { @Html.PagedListPager(Model, page => Url.Action("activities", new { page }), PagedListRenderOptions.ClassicPlusFirstAndLast) } </div> </div> } else { <div><center>No Data</center></div> }
Save