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
/
VITA
/
11NOV25_backup
/
Views
/
Vst
/
View File Name :
Index.cshtml
@model List<RER_Project.DataAccess.ViewModels.Vst.VstVm> <style> .btn { border-radius: 0px; } </style> <div id="pop-up-div" class="modal fade" role="dialog"> </div> <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-md-8"> <ol class="breadcrumb"> <li class="active"> <strong>Vocational Skills Training Record</strong> </li> </ol> </div> <div class="col-lg-4"> <div class="title-action"> <a class="btn btn-sm btn-primary" onclick="downloadVST()">Download Report</a> <a class="btn btn-sm btn-primary" onclick="showDetails()">Excel Upload</a> <a href="/vst/create" class="btn btn-sm 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"> <div class="ibox-content"> <div class="table-responsive" style="margin-top: 16px;"> <table class="footable table table-hover dataTables" data-page-size="10" data-filter=#filter> <thead> <tr> <th>Beneficiary Name</th> <th>Gender</th> <th>Beneficiary Contact</th> <th>Occupation Name</th> <th>Level/Model</th> <th>Name of Training Provider</th> <th>Action</th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td>@item.BeneficiaryName</td> <td>@item.GenderName</td> <td>@item.Contact</td> <td>@item.OccupationName</td> <td>@item.Level</td> <td>@item.TrainingProvider</td> <td> <a class="btn btn-default btn-xs" href="/vst/edit/@item.Id" title="Edit"><i class="fa fa-edit"></i></a> <a class="btn btn-default btn-xs" href="/vst/detail/@item.Id" title="Detail"><i class="fa fa-eye"></i></a> <a class="btn btn-default btn-xs" href="/vst/delete/@item.Id" title="Delete"><i class="fa fa-trash"></i></a> </td> </tr> } </tbody> </table> </div> </div> </div> </div> </div> </div> <link href="~/Content/plugins/dataTables/datatables.min.css" rel="stylesheet" /> <script src="~/Scripts/plugins/dataTables/datatables.min.js"></script> <script> $(document).ready(function () { $('.dataTables').DataTable({ pageLength: 20, dom: '<"html5buttons"B>lTfgitp', buttons: [ //{ extend: 'copy' }, //{ extend: 'csv' }, //{ extend: 'excel', title: 'ExampleFile' }, //{ extend: 'pdf', title: 'ExampleFile' }, //{ // customize: function (win) { // $(win.document.body).addClass('white-bg'); // $(win.document.body).css('font-size', '10px'); // $(win.document.body).find('table') // .addClass('compact') // .css('font-size', 'inherit'); // } //} ] }); }); function showDetails(id, groupId) { AjaxForm.popup("/vst/excelupload"); } function downloadVST(id, groupId) { window.location.href = `report/VstReportGeneration/export`; } </script>