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
/
map
/
Views
/
WorkPlanSelf
/
Edit File Name :
_WorkPlanActivityReportingPartialView.cshtml
@model RER_Project.DataAccess.ViewModels.WorkPlanSelf.WorkPlanSelfActivityReportingViewModel <div class="wrapper wrapper-content animated"> <div class="row"> <div class="col-lg-12"> <div class="table-responsive pvtTable1" style="overflow-x: auto; white-space: nowrap; "> <table class="table table-bordered table-hover display" > <thead> <tr > <th rowspan="2">SN</th> <th rowspan="2">Name</th> <th rowspan="2">Position </th> <th rowspan="2">Year</th> <th rowspan="2">Month</th> <th colspan="2" style="padding-top:20px;text-align:center">First Week</th> <th colspan="2" style="padding-top:20px;text-align:center">Second Week</th> <th colspan="2" style="padding-top:20px;text-align:center">Third Week</th> <th colspan="2" style="padding-top:20px;text-align:center">Last Week</th> </tr> <tr> <th>Plan</th> <th>Progress</th> <th>Plan</th> <th>Progress</th> <th>Plan</th> <th>Progress</th> <th>Plan</th> <th>Progress</th> </tr> </thead> <tbody> @{ int serialNo = 1; } @foreach (var item in Model.WorkPlanSelfActivityList) { <tr> <td> @serialNo @{ serialNo++; } </td> <td> @item.user_name </td> <td> @item.role_name </td> <td> @item.nepali_year </td> <td> @item.month_name </td> <td> @Html.Raw(item.first_week) </td> <td> @Html.Raw(item.first_week_progress) </td> <td> @Html.Raw(item.second_week) </td> <td> @Html.Raw(item.second_week_progress) </td> <td> @Html.Raw(item.third_week) </td> <td> @Html.Raw(item.third_week_progress) </td> <td> @Html.Raw(item.fourth_week) </td> <td onclick="calledit('5')"> @Html.Raw(item.fourth_week_progress) </td> </tr> } </tbody> </table> </div> </div> </div> </div> @*<center> <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> </center>*@ <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