mirror of
https://github.com/ZDoom/zdoom-styles.git
synced 2024-11-24 12:21:03 +00:00
76 lines
No EOL
1.9 KiB
HTML
76 lines
No EOL
1.9 KiB
HTML
<!-- INCLUDE mcp_header.html -->
|
|
|
|
<form method="post" id="mcp" action="{U_POST_ACTION}">
|
|
|
|
<h3>{L_SELECT_USER}</h3>
|
|
|
|
<fieldset class="fields1">
|
|
<dl>
|
|
<dt><label for="username">{L_SELECT_USER}:</label></dt>
|
|
<dd><input name="username" id="username" type="text" class="inputbox" /></dd>
|
|
</dl>
|
|
</fieldset>
|
|
|
|
<fieldset class="submit-buttons">
|
|
<input type="reset" value="{L_RESET}" name="reset" class="button2" />
|
|
<input type="submit" name="submituser" value="{L_SUBMIT}" class="button1" />
|
|
{S_FORM_TOKEN}
|
|
</fieldset>
|
|
</form>
|
|
|
|
<h3>{L_MOST_WARNINGS}</h3>
|
|
|
|
<!-- IF .highest -->
|
|
<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 highest -->
|
|
<tr class="<!-- IF highest.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
|
|
<td>{highest.USERNAME_FULL}</td>
|
|
<td>{highest.WARNINGS}</td>
|
|
<td>{highest.WARNING_TIME}</td>
|
|
<td><a href="{highest.U_NOTES}">{L_VIEW_NOTES}</a></td>
|
|
</tr>
|
|
<!-- END latest -->
|
|
</tbody>
|
|
</table>
|
|
<!-- ELSE -->
|
|
<p class="block">{L_WARNINGS_ZERO_TOTAL}</p>
|
|
<!-- ENDIF -->
|
|
|
|
<h3>{L_LATEST_WARNINGS}</h3>
|
|
|
|
<!-- IF .latest -->
|
|
<table class="table1">
|
|
<thead>
|
|
<tr>
|
|
<th class="name">{L_USERNAME}</th>
|
|
<th class="name">{L_TIME}</th>
|
|
<th class="name">{L_TOTAL_WARNINGS}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- BEGIN latest -->
|
|
<tr class="<!-- IF latest.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
|
|
<td>{latest.USERNAME_FULL}</td>
|
|
<td>{latest.WARNING_TIME}</td>
|
|
<td>{latest.WARNINGS}</td>
|
|
<td><a href="{latest.U_NOTES}">{L_VIEW_NOTES}</a></td>
|
|
</tr>
|
|
<!-- END latest -->
|
|
</tbody>
|
|
</table>
|
|
<!-- ELSE -->
|
|
<p class="block">{L_WARNINGS_ZERO_TOTAL}</p>
|
|
<!-- ENDIF -->
|
|
|
|
<!-- INCLUDE mcp_footer.html --> |