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
/
Bank
/
View File Name :
BankLoanIndex.cshtml
@model RER_Project.DataAccess.ViewModels.BankLoanInfoViewModel @using RER_Project.BusinessLayer.BusinessService @using RER_Project.Core.Helpers @{ ViewBag.Title = "BankLoanIndex"; Layout = "~/Views/Shared/_Layout.cshtml"; var meta = AppUserService.GetCurrent(); } <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-md-10"> <div id="currentMemberId"></div> <strong><span style="font-size:medium"> Detail Of @Model.BankInfo.bank_name </span></strong><br /> <br /> <div class="row"> <div class="col-lg-8"> <span style="font-size: 100%;"> Bank: <strong>@Model.BankInfo.bank_name</strong> </span> <span style="font-size: 100%;"> Bank Manager: <strong>@Model.BankInfo.bank_manager</strong> </span> <span style="font-size: 100%;"> Address: <strong> @Model.BankInfo.address</strong> </span> <span style="font-size: 100%;"> Contact no: <strong> @Model.BankInfo.contact_no</strong> </span> </div> </div> </div> <div class="col-lg-2"> <div class="title-action"> <a href="@("loans/create?bankId=" +Model.BankInfo.id)" class=" btn btn-primary showCreateBtn">Create</a> </div> @*<div> @if (Model.MemberDetailViews.Count > 0) { <div class="pull-right"> <a href="#" onclick="exportExcel()" class="btn"> <img src="~/Images/ExternalIcon/excel.png" style="height:32px;width:32px" /> </a> </div> } </div>*@ </div> <div id="pop-up-div" class="modal fade" role="dialog"> </div> <div class="wrapper wrapper-content animated" style="padding-top: 110px;"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <table class="footable table table-hover dataTables cell-border" data-page-size="8" data-filter=#filter style="width:100%"> <thead> <tr> <th>SN</th> <th>Fiscal Year</th> <th>IFF Name</th> <th>Member Name</th> <th>Bank Name</th> <th>Loan Amount</th> <th>Loan Period</th> <th>Interest Rate</th> <th>Loan Officer</th> <th style=" white-space: nowrap;">Action</th> </tr> </thead> <tbody> @{ int serialNo = 1; } @foreach (var item in Model.BankList) { @Html.HiddenFor(m => item.id); <tr> <td> @serialNo @{ serialNo++; } </td> <td> @item.fiscal_year_name </td> <td>@item.group_name</td> <td>@item.member_name</td> <td>@item.bank_name</td> <td>@item.loan_amount</td> <td>@item.loan_period</td> <td>@item.interest_rate</td> <td>@item.loan_officer</td> @* status = "approved and role = "mce" *@ <td style=" white-space: nowrap;"> @if (meta.RoleId == (int)EnumRoleHelper.Roles.Admin) { <a class="btn btn-default btn-xs" href="@("/banks/loans/edit?Id=" + item.id)" title="Edit" style="color:dodgerblue"><i class="fa fa-edit"></i></a> @*<a href="/private-sector/delete?privateSectorId=@item.Id" title="Delete" style="font-size:15px;padding:5px"><i class="fa fa-trash"></i></a>*@ } <a class="btn btn-default btn-xs" href="/banks/loans/details?id=@item.id&bankid=@item.bank_id" title="View report" style="color:dodgerblue"><i class="fa fa-eye"></i></a> @* @if (currentWorkFlow.StatusId == 1) { <a class="btn btn-default btn-xs" onclick="showDetails(@item.Id,@item.GroupId)" title="A2F"> <i class="fa fa-dollar"></i> </a> }*@ @* <a class="btn btn-warning btn-xs" onclick="recommendMemberByMne(@item.Id)" title="Recommend Group" style="color:dodgerblue">Recommend</a>*@ </td> </tr> } </tbody> </table> </div> </div> </div> </div> </div> </div>