Subversion Repositories SmartDukaan

Rev

Rev 32457 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
24417 govind 1
<section class="wrapper">
2
	<div class="row">
3
		<div class="col-lg-12">
32457 jai.hind 4
			<h3 class="page-header"><i class="icon_document_alt"></i>Create Ticket Category</h3>
24417 govind 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 Ticket Category</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="categoryName" name="categoryName" type="text" value="" class="form-control input-sm">
15
					</div>
16
					<div class="col-lg-3 form-group">
17
					   	<input placeholder="Category Description" id="categorydescription" name="categorydescription" type="text" value="" class="form-control input-sm">
18
					</div>
33081 ranu 19
					<div class="col-lg-3 form-group">
20
						<label>Category Type (checked if internal)</label>
21
						<input type="checkbox" name="categoryType" id="categoryType">
22
					</div>
24417 govind 23
					<div class="col-lg-3">
24
						<input class="btn btn-primary create-ticket-category-button" type="button" value="Create Category">	
25
					</div>
26
				</div>
27
	</form>
28
	#if(!$ticketCategories.isEmpty())
29
		<div id="ticket-category-table">
30
		<div class="row">
31
	    	<div class="col-lg-6">
32
	    		<table class="table table-bordered">
33
	    			<tbody>
34
	    				<tr>
35
	    					<th>NAME</th>
36
	    					<th>Description</th>
37
	    				</tr>
38
 
39
			    			#foreach( $ticketCategory in $ticketCategories )
40
			    				<tr>
41
			    					<td>$ticketCategory.getName()</td>
42
			    					<td>$ticketCategory.getDescription()</td>
43
			    				</tr>
44
			    			#end
45
	    			</tbody>
46
	    		</table>
47
	    	</div>
48
	    </div>
49
    </div>
50
 
51
	#end
52
	</section>