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
/
Views
/
ADBLBranch
/
View File Name :
ADBLProduct.cshtml
@model List<RER_Project.DataAccess.Models.ADBLProductModel> @{ ViewBag.Title = "ADBLProduct"; Layout = "~/Views/Shared/_Layout.cshtml"; } @using RER_Project.BusinessLayer.BusinessService @using RER_Project.Core.Helpers @{ var meta = AppUserService.GetCurrent(); } <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="row"> <div class="col-lg-5"> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#"><strong>ADBL Product</strong></a></li> <li class="breadcrumb-item active"><a href="#"><strong>List</strong></a></li> </ol> </nav> </div> <div class="col-lg-offset-5 col-lg-2 "> @if (meta.RoleId == (int)EnumRoleHelper.Roles.Admin) { <a href="/ADBLBranch/ProductCreate" class="btn btn-primary pull-right">Add Product</a> } </div> </div> <hr style="margin-top:5px;margin-bottom:20px" /> <div class="table-responsive"> <table class="footable table table-hover dataTables" data-page-size="8" data-filter=#filter id="userListTable"> <thead> <tr> <th>SN</th> <th>Product Name</th> <th>Actions</th> </tr> </thead> <tbody> @{ int i = 1; foreach (var item in Model) { <tr> <td>@i</td> <td>@item.product_name </td> <td> @if (meta.RoleId == (int)EnumRoleHelper.Roles.Admin) { <a class="btn btn-default btn-xs" style="color:dodgerblue" href="@("/ADBLBranch/ProductEdit/" + item.id)" title="Edit"><i class="fa fa-edit"></i></a> } </td> </tr> i++; } } </tbody> </table> </div> </div> </div> </div> </div> </div> <link href="~/Content/datatables.min.css" rel="stylesheet" /> <script src="~/Scripts/datatables.min.js"></script> @*<script> $(document).ready(function () { $('#userListTable').DataTable({ stateSave: true, fixedHeader: true, pageLength: 15, 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'); // } //} ] }); }); </script>*@