| 24417 |
govind |
1 |
|
|
|
2 |
<section class="wrapper">
|
|
|
3 |
<div class="row">
|
|
|
4 |
<div class="col-lg-12">
|
|
|
5 |
<h3 class="page-header"><i class="icon_document_alt"></i>TICKET</h3>
|
|
|
6 |
<ol class="breadcrumb">
|
|
|
7 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
| 31986 |
tejbeer |
8 |
<li><i class="icon_document_alt"></i>Create Ticket</li>
|
|
|
9 |
<li><a href="#videoModal" class="btn btn-danger" data-toggle="modal" data-src="_MTprcDnh20"><span
|
|
|
10 |
class="glyphicon glyphicon-play-circle"></span> Play Video</a></li>
|
|
|
11 |
|
|
|
12 |
|
| 24417 |
govind |
13 |
</ol>
|
|
|
14 |
</div>
|
|
|
15 |
</div>
|
|
|
16 |
<form id="create-ticket-form">
|
|
|
17 |
<div class = "row">
|
|
|
18 |
<div class="col-lg-2 form-group">
|
|
|
19 |
<select class="form-control input-sm" id = "category" name="category" placeholder="Type">
|
|
|
20 |
<option value="" disabled selected>Category</option>
|
|
|
21 |
#foreach($ticketCategory in $ticketCategories)
|
| 24439 |
govind |
22 |
<option value="$ticketCategory.getId()">$ticketCategory.getDescription()</option>
|
| 24417 |
govind |
23 |
#end
|
|
|
24 |
</select>
|
|
|
25 |
</div>
|
|
|
26 |
<div class="col-lg-2 form-group" id="create-ticket-sub-categories">
|
|
|
27 |
<select class="form-control input-sm" id="subCategory" name="subCategory" placeholder="subCategory">
|
|
|
28 |
<option value="" disabled selected>SubCategories</option>
|
|
|
29 |
</select>
|
|
|
30 |
</div>
|
|
|
31 |
<div class="col-lg-3">
|
|
|
32 |
<input class="btn btn-primary create-ticket-button" type="button" value="Create Ticket">
|
|
|
33 |
</div>
|
|
|
34 |
</div>
|
|
|
35 |
</form>
|
|
|
36 |
</section>
|