2013-07-06 17:12:55 +00:00
|
|
|
{block name=content}
|
|
|
|
<div class="row-fluid sortable ui-sortable">
|
|
|
|
<div class="box span8">
|
|
|
|
<div class="box-header well" data-original-title="">
|
|
|
|
<h2><i class="icon-th"></i> Create a new Ticket</h2>
|
|
|
|
</div>
|
|
|
|
<div class="box-content">
|
|
|
|
<div class="row-fluid">
|
2013-07-08 07:40:48 +00:00
|
|
|
<form id="changePassword" class="form-vertical" method="post" action="index.php?page=createticket&id={$target_id}">
|
2013-07-06 17:12:55 +00:00
|
|
|
<legend>New ticket</legend>
|
2014-09-03 01:08:57 +00:00
|
|
|
|
2013-07-06 17:12:55 +00:00
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label">Title</label>
|
|
|
|
<div class="controls">
|
|
|
|
<div class="input-prepend">
|
|
|
|
<input type="text" class="span8" id="Title" name="Title">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-03 01:08:57 +00:00
|
|
|
|
2013-07-06 17:12:55 +00:00
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label">Category</label>
|
|
|
|
<div class="controls">
|
|
|
|
<select name="Category">
|
|
|
|
{foreach from=$category key=k item=v}
|
|
|
|
<option value="{$k}">{$v}</option>
|
|
|
|
{/foreach}
|
2014-09-03 01:08:57 +00:00
|
|
|
</select>
|
2013-07-06 17:12:55 +00:00
|
|
|
</div>
|
2014-09-03 01:08:57 +00:00
|
|
|
</div>
|
|
|
|
|
2013-07-06 17:12:55 +00:00
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label">Description</label>
|
|
|
|
<div class="controls">
|
|
|
|
<div class="input-prepend">
|
2013-07-10 00:41:03 +00:00
|
|
|
<textarea rows="12" class="span12" id="Content" name="Content"></textarea>
|
2013-07-06 17:12:55 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2013-07-06 20:38:57 +00:00
|
|
|
<input type="hidden" name="function" value="create_ticket">
|
2013-07-06 17:12:55 +00:00
|
|
|
<input type="hidden" name="target_id" value="{$target_id}">
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"></label>
|
|
|
|
<div class="controls">
|
|
|
|
<button type="submit" class="btn btn-primary" style="margin-left:5px; margin-top:10px;">Send Ticket</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-03 01:08:57 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
2013-07-06 17:12:55 +00:00
|
|
|
</div>
|
|
|
|
</div><!--/span-->
|
|
|
|
</div><!--/row-->
|
|
|
|
{/block}
|
2014-09-03 01:08:57 +00:00
|
|
|
|