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
/
11NOV25_backup
/
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>T1 Target vs Assigned vs Progress</th> <th>T2 Target vs Assigned vs Progress</th> <th>T3 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.Activity</td> <td>@item.UnitName</td> <th>@item.FirstQuadQuantity / @item.FirstQuadAssign / @item.FirstQuadProgress</th> <th>@item.SecondQuadQuantity / @item.SecondQuadAssign / @item.SecondQuadProgress</th> <th>@item.ThirdQuadQuantity / @item.ThirdQuadAssign / @item.ThirdQuadProgress</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>Shrawan</th> <th>Bhadra</th> <th>Asoj</th> <th>Kartik</th> <th>Mangsir</th> <th>Poush</th> <th>Magh</th> <th>Falgun</th> <th>Chaitra</th> <th>Baishakh</th> <th>Jestha</th> <th>Asar</th> </tr> @foreach (var order in Model[0].ActivityMonthWiseReports.Where(x => x.ActivityId == item.ActivityId)) { <tr> <td>@order.PriorityActivityOneSupportName</td> <td>@order.ShrawanQ / @order.Shrawan</td> <td>@order.BhadraQ / @order.Bhadra</td> <td>@order.AsojQ / @order.Aswin</td> <td>@order.KartikQ / @order.Kartik</td> <td>@order.MangsirQ / @order.Mansir</td> <td>@order.PoushQ / @order.Poush</td> <td>@order.MaghQ / @order.Magh</td> <td>@order.FalgunQ / @order.Falgun</td> <td>@order.ChaitraQ / @order.Chaitra</td> <td>@order.BaishakhQ / @order.Baishakh</td> <td>@order.JesthaQ / @order.Jestha</td> <td>@order.AsarQ / @order.Asar</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