| 24417 |
govind |
1 |
<section class="wrapper">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-12">
|
|
|
4 |
<h3 class="page-header"><i class="icon_document_alt"></i>TICKET</h3>
|
|
|
5 |
<ol class="breadcrumb">
|
|
|
6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
7 |
<li><i class="icon_document_alt"></i>Create Region</li>
|
|
|
8 |
</ol>
|
|
|
9 |
</div>
|
|
|
10 |
</div>
|
|
|
11 |
<form id="create-ticket-category-form">
|
|
|
12 |
<div class = "row">
|
|
|
13 |
<div class="col-lg-3 form-group">
|
|
|
14 |
<input placeholder="Name" id="regionName" name="regionName" type="text" value="" class="form-control input-sm">
|
|
|
15 |
</div>
|
|
|
16 |
<div class="col-lg-3 form-group">
|
|
|
17 |
<input placeholder="Region description" id="regiondescription" name="regiondescription" type="text" value="" class="form-control input-sm">
|
|
|
18 |
</div>
|
|
|
19 |
<div class="col-lg-3">
|
|
|
20 |
<input class="btn btn-primary create-region-button" type="button" value="Create Region">
|
|
|
21 |
</div>
|
|
|
22 |
</div>
|
|
|
23 |
</form><br><br>
|
|
|
24 |
#if(!$regions.isEmpty())
|
|
|
25 |
<div id="region-table">
|
|
|
26 |
<div class="row">
|
|
|
27 |
<div class="col-lg-6">
|
|
|
28 |
<table class="table table-bordered">
|
|
|
29 |
<tbody>
|
|
|
30 |
<tr>
|
|
|
31 |
<th>NAME</th>
|
|
|
32 |
<th>Description</th>
|
|
|
33 |
</tr>
|
|
|
34 |
|
|
|
35 |
#foreach( $region in $regions )
|
|
|
36 |
<tr>
|
|
|
37 |
<td>$region.getName()</td>
|
|
|
38 |
<td>$region.getDescription()</td>
|
|
|
39 |
</tr>
|
|
|
40 |
#end
|
|
|
41 |
</tbody>
|
|
|
42 |
</table>
|
|
|
43 |
</div>
|
|
|
44 |
</div>
|
|
|
45 |
</div>
|
|
|
46 |
|
|
|
47 |
#end
|
|
|
48 |
</section>
|