Files
Froxlor/templates/Sparkle/admin/tickets/archivesearch.tpl
Roman Schmerold (BNoiZe) c69a05efa5 Redesigned tables to use less CSS
Signed-off-by: Roman Schmerold (BNoiZe) <bnoize@froxlor.org>
2014-01-27 19:57:03 +01:00

32 lines
1.1 KiB
Smarty

$header
<section>
<header>
<h2><img src="templates/{$theme}/assets/img/icons/ticket_archive_big.png" alt="" />&nbsp;{$lng['ticket']['archivesearch']}</h2>
</header>
<form action="{$linker->getLink(array('section' => 'tickets'))}" method="post">
<input type="hidden" name="s" value="$s"/>
<input type="hidden" name="page" value="$page"/>
<input type="hidden" name="send" value="send" />
<table class="full">
<if 0 < $tickets_count >
<tr>
<th class="field_display_border_left">{$lng['ticket']['archivedtime']}</th>
<th class="field_display">{$lng['ticket']['ticket_answers']}</th>
<th class="field_display">{$lng['ticket']['subject']}</th>
<th class="field_display">{$lng['ticket']['lastreplier']}</th>
<th class="field_display">{$lng['ticket']['priority']}</th>
<th class="field_display_search">&nbsp;</th>
</tr>
$tickets
</if>
<if $tickets_count < 1 >
<tr>
<td class="field_display_border_left" colspan="6">{$lng['ticket']['noresults']}</td>
</tr>
</if>
</table>
</form>
</section>
$footer