74 lines
2.2 KiB
HTML
74 lines
2.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
||
|
xmlns:th="http://www.thymeleaf.org"
|
||
|
layout:decorate="~{layouts/blank-layout}">
|
||
|
<head>
|
||
|
<title th:text="${pageTitle}">Tasks Pool</title>
|
||
|
</head>
|
||
|
<div layout:fragment="page_subtitle">
|
||
|
<h1 class="title">Application Pool</h1>
|
||
|
</div>
|
||
|
<body layout:fragment="page_content" id="page_tasks">
|
||
|
<div class="section-space"></div>
|
||
|
<!--/* Search Criteria */-->
|
||
|
<div class="row bd-example highlight p-0">
|
||
|
<div class="col-md-10">
|
||
|
<div class="row">
|
||
|
<div class="col-md-6">
|
||
|
<div class="form-group">
|
||
|
<label class="required bmd-label-floating" th:text="#{'Reference No.'}" ></label>
|
||
|
<input type="text" th:id="taskMasterId" class="form-control" th:name="taskMasterId" required="required" />
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-md-6">
|
||
|
<div class="form-group">
|
||
|
<label class="bmd-label-floating" th:text="#{'Status'}" ></label>
|
||
|
<select class="form-control" id="status" >
|
||
|
<option value="" />
|
||
|
<option value="A">Active</option>
|
||
|
<option value="I">Inactive</option>
|
||
|
<option value="F">First Time Users</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-md-2 align-self-center">
|
||
|
<div class="btn-group btn-group-sm float-right">
|
||
|
<button id="searchFilter" name="search" class="btn btn-primary btn-just-icon" th:title="#{btn.cmn.sea}">
|
||
|
<i class="material-icons">search</i>
|
||
|
</button>
|
||
|
|
||
|
<button id="clearFilter" name="clear"
|
||
|
class="btn btn-primary btn-just-icon"
|
||
|
th:title="#{btn.cmn.clr}">
|
||
|
<i class="material-icons">clear_all</i>
|
||
|
</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!--/* Result List */-->
|
||
|
<div class="table-responsive table-hover mb-2">
|
||
|
<table id="tblTaskLst" class="table">
|
||
|
<colgroup>
|
||
|
<col width="10%" />
|
||
|
<col width="15%" />
|
||
|
<col width="15%" />
|
||
|
<col width="15%" />
|
||
|
<col width="20%" />
|
||
|
<col width="15%" />
|
||
|
</colgroup>
|
||
|
<thead class="table-primary">
|
||
|
<tr>
|
||
|
<th>Status</th>
|
||
|
<th>Reference No.</th>
|
||
|
<th>Application Date</th>
|
||
|
<th>Applicant</th>
|
||
|
<th>Application Type</th>
|
||
|
<th class="disabled-sorting">Actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
</table>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|