Files
Froxlor/templates/Froxlor/admin/ticket/archive.tpl
2011-06-13 20:34:15 +02:00

87 lines
2.2 KiB
Smarty

$header
<article>
<header>
<h2>
<img src="images/Froxlor/icons/ticket_archive.png" alt="" />&nbsp;
{$lng['ticket']['lastarchived']}
</h2>
</header>
<section>
<table class="bradiusodd">
<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 />
<article>
<header>
<h2>
<img src="images/Froxlor/icons/ticket_archive_search.png" alt="" />&nbsp;
{$lng['ticket']['search']}
</h2>
</header>
<section class="fullform bradiusodd">
<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>
<br /><br />
</section>
</article>
$footer