mirror of
https://github.com/ZDoom/zdoom-styles.git
synced 2024-11-24 12:21:03 +00:00
44 lines
No EOL
1 KiB
HTML
44 lines
No EOL
1 KiB
HTML
<!-- INCLUDE mcp_header.html -->
|
|
|
|
<form method="post" id="mcp" action="{U_POST_ACTION}">
|
|
|
|
<p>{L_WARNED_USERS_EXPLAIN}</p>
|
|
|
|
<!-- IF .user -->
|
|
<table class="table1">
|
|
<thead>
|
|
<tr>
|
|
<th class="name">{L_USERNAME}</th>
|
|
<th class="name">{L_WARNINGS}</th>
|
|
<th class="name">{L_LATEST_WARNING_TIME}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<!-- BEGIN user -->
|
|
<tr class="<!-- IF user.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
|
|
<td>{user.USERNAME_FULL}</td>
|
|
<td>{user.WARNINGS}</td>
|
|
<td>{user.WARNING_TIME}</td>
|
|
<td><a href="{user.U_NOTES}">{L_VIEW_NOTES}</a></td>
|
|
</tr>
|
|
<!-- END user -->
|
|
</tbody>
|
|
</table>
|
|
|
|
<fieldset class="display-options">
|
|
<label>{L_DISPLAY_POSTS}: {S_SELECT_SORT_DAYS}</label>
|
|
<label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label><label>{S_SELECT_SORT_DIR}</label>
|
|
<input type="submit" name="sort" value="{L_GO}" class="button2" />
|
|
</fieldset>
|
|
|
|
<!-- ELSE -->
|
|
<p><strong>{L_WARNINGS_ZERO_TOTAL}</strong></p>
|
|
<!-- ENDIF -->
|
|
|
|
{S_FORM_TOKEN}
|
|
|
|
</form>
|
|
|
|
<!-- INCLUDE mcp_footer.html --> |