Subversion Repositories SmartDukaan

Rev

Rev 24417 | 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 Sub 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 Sub Category</li>						  	
8
			</ol>
9
		</div>
10
	</div>
11
	<form id="create-ticket-sub-category-form">
12
				<div class = "row">
13
				<div class="col-lg-3 form-group">
14
						<select class="form-control input-sm" id = "ticketCategory" name="ticketCategory" placeholder="Type">
15
							<option value="" disabled selected>TicketCategory</option>
16
							#foreach($ticketCategory in $ticketCategories)
17
		             		<option value="$ticketCategory.getId()">$ticketCategory.getName()</option>
18
		             		#end
19
		             	</select>
20
				</div>
21
					<div class="col-lg-3 form-group">
22
					   	<input placeholder="Name" id="subcategoryName" name="subcategoryName" type="text" value="" class="form-control input-sm">
23
					</div>
24
					<div class="col-lg-3 form-group">
25
					   	<input placeholder="Sub Category Description" id="subcategorydescription" name="categorydescription" type="text" value="" class="form-control input-sm">
26
					</div>
27
					<div class="col-lg-3">
28
						<input class="btn btn-primary create-ticket-sub-category-button" type="button" value="Create Sub Category">	
29
					</div>
30
				</div>
31
	</form>
32
	<div class="ticket-sub-category-container">
33
	<div>
34
	</section>