86 lines
2.1 KiB
Smarty
86 lines
2.1 KiB
Smarty
$header
|
|
<article>
|
|
<header>
|
|
<h2>
|
|
<img src="templates/{$theme}/assets/img/icons/ticket_archive_big.png" alt="" />
|
|
{$lng['ticket']['lastarchived']}
|
|
</h2>
|
|
</header>
|
|
|
|
<section>
|
|
|
|
<table class="bradius">
|
|
<thead>
|
|
<tr>
|
|
<th>{$lng['ticket']['archivedtime']}</th>
|
|
<th>{$lng['ticket']['ticket_answers']}</th>
|
|
<th>{$lng['ticket']['subject']}</th>
|
|
<th>{$lng['ticket']['lastreplier']}</th>
|
|
<th>{$lng['ticket']['priority']}</th>
|
|
<th>{$lng['panel']['options']}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
$tickets
|
|
</tbody>
|
|
</table>
|
|
|
|
</section>
|
|
|
|
</article>
|
|
<br />
|
|
<br />
|
|
<article>
|
|
<header>
|
|
<h3>
|
|
{$lng['ticket']['search']}
|
|
</h3>
|
|
</header>
|
|
|
|
<section class="fullform bradius">
|
|
|
|
<form action="{$linker->getLink(array('section' => 'tickets'))}" method="post" enctype="application/x-www-form-urlencoded">
|
|
|
|
<input type="hidden" name="s" value="$s"/>
|
|
<input type="hidden" name="page" value="$page"/>
|
|
<input type="hidden" name="send" value="send" />
|
|
|
|
<table class="formtable">
|
|
<tr>
|
|
<td>{$lng['ticket']['subject']}:</td>
|
|
<td ><input type="text" name="subject" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{$lng['ticket']['priority']}:</td>
|
|
<td >{$priorities_options}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{$lng['ticket']['category']}:</td>
|
|
<td>{$category_options}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>{$lng['ticket']['lastchange']}:</td>
|
|
<td><label for="fromdate">{$lng['ticket']['lastchange_from']}</label>
|
|
<input type="text" id="fromdate" name="fromdate" /><br /><br />
|
|
<label for="todate">{$lng['ticket']['lastchange_to']}</label>
|
|
<input type="text" id="todate" name="todate" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{$lng['ticket']['message']}:</td>
|
|
<td><textarea rows="12" cols="50" name="message"></textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{$lng['ticket']['customer']}:</td>
|
|
<td><select name="customer">$customers</select></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="main_field_confirm" colspan="2"><input type="hidden" name="send" value="send" /><input type="submit" class="bottom" value="{$lng['panel']['search']}" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|
|
</section>
|
|
|
|
</article>
|
|
$footer
|