mirror of
https://github.com/ZDoom/zdoom-styles.git
synced 2025-02-19 10:31:04 +00:00
58 lines
No EOL
1.7 KiB
HTML
58 lines
No EOL
1.7 KiB
HTML
<!-- INCLUDE mcp_header.html -->
|
|
|
|
<h2>{L_TITLE}</h2>
|
|
|
|
<form method="post" id="mcp" action="{U_POST_ACTION}">
|
|
|
|
<p>{L_SEARCH_KEYWORDS}: <input type="text" class="inputbox autowidth" name="keywords" value="{S_KEYWORDS}" /> <input type="submit" class="button2" name="filter" value="{L_SEARCH}" /></p>
|
|
|
|
|
|
<table class="table1">
|
|
<thead>
|
|
<tr>
|
|
<th>{L_USERNAME}</th>
|
|
<th style="text-align: center">{L_IP}</th>
|
|
<th style="text-align: center">{L_TIME}</th>
|
|
<th>{L_ACTION}</th>
|
|
<!-- IF S_CLEAR_ALLOWED --><th>{L_MARK}</th><!-- ENDIF -->
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- IF S_LOGS -->
|
|
<!-- BEGIN log -->
|
|
<!-- IF log.S_ROW_COUNT is even --><tr class="bg1"><!-- ELSE --><tr class="bg2"><!-- ENDIF -->
|
|
<td>{log.USERNAME}</td>
|
|
<td style="text-align: center">{log.IP}</td>
|
|
<td style="text-align: center">{log.DATE}</td>
|
|
<td>{log.ACTION}<br />
|
|
{log.DATA}
|
|
</td>
|
|
<!-- IF S_CLEAR_ALLOWED --><td style="width: 5%" align="center"><input type="checkbox" name="mark[]" value="{log.ID}" /></td><!-- ENDIF -->
|
|
</tr>
|
|
<!-- END log -->
|
|
<!-- ELSE -->
|
|
<tr>
|
|
<td class="bg1" colspan="<!-- IF S_CLEAR_ALLOWED -->5<!-- ELSE -->4<!-- ENDIF -->" align="center"><span class="gen">{L_NO_ENTRIES}</span></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- IF .log -->
|
|
{S_FORM_TOKEN}
|
|
|
|
<!-- IF S_CLEAR_ALLOWED -->
|
|
<fieldset class="display-actions">
|
|
<input class="button2" type="submit" name="action[del_all]" value="{L_DELETE_ALL}" />
|
|
<input class="button1" type="submit" value="{L_DELETE_MARKED}" name="action[del_marked]" />
|
|
|
|
</fieldset>
|
|
<!-- ENDIF -->
|
|
<!-- ELSE -->
|
|
{S_FORM_TOKEN}
|
|
<!-- ENDIF -->
|
|
</form>
|
|
|
|
<br />
|
|
|
|
<!-- INCLUDE mcp_footer.html --> |