mirror of
https://github.com/ZDoom/zdoom-styles.git
synced 2024-11-24 12:21:03 +00:00
66 lines
2.4 KiB
HTML
66 lines
2.4 KiB
HTML
|
<!-- INCLUDE mcp_header.html -->
|
||
|
|
||
|
<form method="post" id="mcp" action="{U_POST_ACTION}">
|
||
|
|
||
|
<h3>{USERNAME_FULL}</h3>
|
||
|
|
||
|
<dl class="details">
|
||
|
<!-- IF RANK_TITLE --><dt>{L_RANK}:</dt><dd>{RANK_TITLE}</dd><!-- ENDIF -->
|
||
|
<!-- IF RANK_IMG --><dt><!-- IF RANK_TITLE --> <!-- ELSE -->{L_RANK}:<!-- ENDIF --></dt><dd>{RANK_IMG}</dd><!-- ENDIF -->
|
||
|
<dt>{L_JOINED}:</dt><dd>{JOINED}</dd>
|
||
|
<dt>{L_TOTAL_POSTS}:</dt><dd>{POSTS}</dd>
|
||
|
<dt>{L_WARNINGS}: </dt><dd>{WARNINGS}</dd>
|
||
|
</dl>
|
||
|
|
||
|
<h3>{L_ADD_FEEDBACK}</h3>
|
||
|
<p>{L_ADD_FEEDBACK_EXPLAIN}</p>
|
||
|
|
||
|
<div id="message-box">
|
||
|
<textarea name="usernote" id="usernote" class="inputbox" cols="40" rows="3"></textarea>
|
||
|
</div>
|
||
|
|
||
|
<fieldset class="submit-buttons">
|
||
|
{S_HIDDEN_FIELDS}<input type="reset" value="{L_RESET}" name="reset" class="button2" />
|
||
|
<input type="submit" name="action[add_feedback]" value="{L_SUBMIT}" class="button1" />
|
||
|
{S_FORM_TOKEN}
|
||
|
</fieldset>
|
||
|
|
||
|
<p><br />{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_REPORT_BY}</th>
|
||
|
<th style="text-align: center">{L_IP}</th>
|
||
|
<th style="text-align: center">{L_TIME}</th>
|
||
|
<th>{L_ACTION_NOTE}</th>
|
||
|
<!-- IF S_CLEAR_ALLOWED --><th>{L_MARK}</th><!-- ENDIF -->
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<!-- BEGIN usernotes -->
|
||
|
<!-- IF usernotes.S_ROW_COUNT is even --><tr class="bg1"><!-- ELSE --><tr class="bg2"><!-- ENDIF -->
|
||
|
<td>{usernotes.REPORT_BY}</td>
|
||
|
<td style="text-align: center">{usernotes.IP}</td>
|
||
|
<td style="text-align: center">{usernotes.REPORT_AT}</td>
|
||
|
<td>{usernotes.ACTION}</td>
|
||
|
|
||
|
<!-- IF S_CLEAR_ALLOWED --><td style="width: 5%; text-align: center;"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF -->
|
||
|
</tr>
|
||
|
<!-- BEGINELSE -->
|
||
|
<tr>
|
||
|
<td class="bg1" colspan="<!-- IF S_CLEAR_ALLOWED -->5<!-- ELSE -->4<!-- ENDIF -->" align="center"><span class="gen">{L_NO_ENTRIES}</span></td>
|
||
|
</tr>
|
||
|
<!-- END usernames -->
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<!-- 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" name="action[del_marked]" value="{L_DELETE_MARKED}" />
|
||
|
</fieldset>
|
||
|
<!-- ENDIF -->
|
||
|
</form>
|
||
|
|
||
|
<!-- INCLUDE mcp_footer.html -->
|