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
/
ActivityReporting
/
View File Name :
_ActivityDisaggregatedReport.cshtml
@model List<RER_Project.DataAccess.Functions.Fn_Activity_Disaggreated_Data> @{ Layout = null;} <div class="table-responsive" style="margin-top: 16px;"> <h4 style="background-color: #e9e9e9; padding: 8px 8px;">Member Participants Details(Disaggregated Data)</h4> <table class="footable table table-bordered table-hover"> @foreach (var i in Model.GroupBy(x => new { x.ActivityName, x.Component, x.FiscalYearNameNepali, x.SubComponent,x.CommodityName,x.ProvinceName })) { <thead> <tr> @*<th colspan="4">Fiscal Year</th> <th colspan="4">Component</th> <th colspan="6">Sub Component</th> <th colspan="25">Activity</th>*@ </tr> <tr> @*<td colspan="4">@i.Key.FiscalYearNameNepali</td> <td colspan="4">@i.Key.Component</td> <td colspan="6">@i.Key.SubComponent</td>*@ <td colspan="23"><b>@i.Key.ActivityName</b></td> </tr> <tr> <th style="text-align:center">Participants</th> <th colspan="2" style="text-align:center">Total</th> </tr> <tr> <th></th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> </tr> </thead> <tbody> @foreach (var item in i) { <tr> <td>@item.MigrationStatus</td> <td style="text-align:center;">@item.TotalMale</td> <td style="text-align:center;">@item.TotalFemale</td> </tr> } </tbody> } </table> </div>