เพิ่มประวัติ การดำเนินกิจกรรมการประเมิน

This commit is contained in:
LAPTOP-KB8JC2K2\acer
2021-04-13 15:14:51 +07:00
parent 9feecad1cb
commit ddb4232254
29 changed files with 2626 additions and 47 deletions

View File

@@ -0,0 +1,59 @@
@using Microsoft.Extensions.Configuration
@inject IConfiguration Configuration
@{
ViewData["Title"] = "eva_create_evaluation_detail_history";
Layout = "_LayoutDirect";
}
<div class="row page-title">
<div class="col-md-5">
<div class="page-title">
@Configuration["SiteInformation:modulename"]
</div>
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Configuration["SiteInformation:mainsite"]">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Configuration["SiteInformation:mainsite"]@Configuration["SiteInformation:appsite"]">@Configuration["SiteInformation:modulename"]</a></li>
<li class="breadcrumb-item active">ประวัติการดำเนินการ</li>
</ol>
</div>
</div>
<section class="wrapper">
<div class="title"><div class="line"></div>ประวัติการดำเนินการ</div>
<div class="tools">
<div class="row">
<div class="col-md-3">
<button type="button" class="btn btn-danger" onclick="javascript:window_close();"><i class="fa fa-repeat"></i> กลับ</button>
</div>
</div>
</div>
<table id="eva_create_evaluation_detail_historyTable" class="display table table-bordered table-striped">
<thead>
<tr>
<th><label id='h_eva_create_evaluation_detail_history_action_dt'>วันที่/เวลา</label></th>
<th><label id='h_eva_create_evaluation_detail_history_action_detail'>รายละเอียด</label></th>
<th><label id='h_eva_create_evaluation_detail_history_action_emp_id'>ผู้ดำเนินการ</label></th>
</tr>
</thead>
<tbody></tbody>
</table>
</section>
@section FooterPlaceHolder{
<script src="~/js/eva_create_evaluation_detail_history/eva_create_evaluation_detail_history.js"></script>
<script>
$(document).ready(function () {
eva_create_evaluation_detail_history_InitiateDataTable();
eva_create_evaluation_detail_history_InitialForm();
SetupValidationRemark("eva_create_evaluation_detail_history");
});
</script>
}