Revision 286, 1.5 KB
(checked in by ralle030583, 15 years ago)
|
- fixed link errors in admin_kill_export template
- fixed ingame_mod + raw mail's aviable ingame
|
Line | |
---|
1 | Please select pilots, corps or alliances to be exported.<br/> |
---|
2 | <br/> |
---|
3 | <form id="search" action="?a=admin_kill_export" method="post"> |
---|
4 | <table class="kb-subtable"> |
---|
5 | <tr><td>Type:</td><td>Text: (3 letters minimum)</td></tr> |
---|
6 | <tr><td><select id="searchtype" name="searchtype"><option value="pilot">Pilot</option> |
---|
7 | <option value="corp">Corporation</option> |
---|
8 | <option value="alliance">Alliance</option> |
---|
9 | </select></td><td><input id="searchphrase" name="searchphrase" type="text" size="30"/></td> |
---|
10 | <td><input type="submit" name="submit" value="Search"/></td></tr></table></form> |
---|
11 | {if $search} |
---|
12 | <table class="kb-table" width="450" cellspacing="1"> |
---|
13 | <tr class="kb-table-header"><td>Search results</td></tr> |
---|
14 | {section name=res loop=$results} |
---|
15 | <tr class="kb-table-row-even"><td><a href="{$results[res].link}">{$results[res].descr}</a></td></tr> |
---|
16 | {sectionelse} |
---|
17 | <tr class="kb-table-row-even"><td>No results.</td></tr> |
---|
18 | {/section} |
---|
19 | </table> |
---|
20 | {/if} |
---|
21 | <br/> |
---|
22 | <div class="block-header2">Included</div> |
---|
23 | <table class="kb-table"> |
---|
24 | {section name=opt loop=$permissions} |
---|
25 | <tr class="kb-table-header"><td colspan="2">{$permissions[opt].name}</td></tr> |
---|
26 | {section name=idx loop=$permissions[opt].list} |
---|
27 | <tr><td width="200"><b>{$permissions[opt].list[idx].text}</b></td><td><a href="{$permissions[opt].list[idx].link}">Delete</a></td></tr> |
---|
28 | {/section} |
---|
29 | {sectionelse} |
---|
30 | <tr><td>None.</td></tr> |
---|
31 | {/section} |
---|
32 | </table> |
---|
33 | {if $permissions} |
---|
34 | <br/><a href="?a=admin_kill_export&sub=do">Export Mails</a> |
---|
35 | {/if} |
---|
36 | <br/> |
---|