Rev 32457 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<section class="wrapper"><div class="row"><div class="col-lg-12"><h3 class="page-header"><i class="icon_document_alt"></i>Create Ticket Category</h3><ol class="breadcrumb"><li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li><li><i class="icon_document_alt"></i>Create Ticket Category</li></ol></div></div><form id="create-ticket-category-form"><div class = "row"><div class="col-lg-3 form-group"><input placeholder="Name" id="categoryName" name="categoryName" type="text" value="" class="form-control input-sm"></div><div class="col-lg-3 form-group"><input placeholder="Category Description" id="categorydescription" name="categorydescription" type="text" value="" class="form-control input-sm"></div><div class="col-lg-3 form-group"><label>Category Type (checked if internal)</label><input type="checkbox" name="categoryType" id="categoryType"></div><div class="col-lg-3"><input class="btn btn-primary create-ticket-category-button" type="button" value="Create Category"></div></div></form>#if(!$ticketCategories.isEmpty())<div id="ticket-category-table"><div class="row"><div class="col-lg-6"><table class="table table-bordered"><tbody><tr><th>NAME</th><th>Description</th></tr>#foreach( $ticketCategory in $ticketCategories )<tr><td>$ticketCategory.getName()</td><td>$ticketCategory.getDescription()</td></tr>#end</tbody></table></div></div></div>#end</section>