blob: 0984e85cfc298cb63939994ebf9061dc5ae181bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[% INCLUDE 'admin/header.html' title=loc('Search Abuse Table') %]
<form method="get" action="[% c.uri_for('search_abuse') %]" enctype="application/x-www-form-urlencoded" accept-charset="utf-8">
<label for="search">[% loc('Search:') %]</label> <input type="text" name="search" size="30" id="search">
</form>
[% IF emails.size > 0 %]
<table cellspacing="0" cellpadding="2" border="1">
<tr>
<th>[% loc('Email') %]</th>
</tr>
[%- FOREACH foo IN emails %]
<tr>
<td>[%- foo.email | html -%]</td>
</tr>
[%- END -%]
</table>
[% END %]
[% INCLUDE 'admin/footer.html' %]
|