diff options
| author | Graham Eames <grahamje@users.sourceforge.net> | 2005-12-14 20:54:54 +0000 |
|---|---|---|
| committer | Graham Eames <grahamje@users.sourceforge.net> | 2005-12-14 20:54:54 +0000 |
| commit | a7dcdb07602f9d1e72cfbcd2c0c02c3dacd06320 (patch) | |
| tree | c89e2094857902d845914d167b54487811487ba3 /phpBB/styles | |
| parent | 9acd80748c9e63c049d56f6504810fc28fff96b7 (diff) | |
| download | forums-a7dcdb07602f9d1e72cfbcd2c0c02c3dacd06320.tar forums-a7dcdb07602f9d1e72cfbcd2c0c02c3dacd06320.tar.gz forums-a7dcdb07602f9d1e72cfbcd2c0c02c3dacd06320.tar.bz2 forums-a7dcdb07602f9d1e72cfbcd2c0c02c3dacd06320.tar.xz forums-a7dcdb07602f9d1e72cfbcd2c0c02c3dacd06320.zip | |
Adding the ability to get a list of all users with outstanding warnings
git-svn-id: file:///svn/phpbb/trunk@5333 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
| -rwxr-xr-x | phpBB/styles/subSilver/template/mcp_warn_front.html | 2 | ||||
| -rwxr-xr-x | phpBB/styles/subSilver/template/mcp_warn_list.html | 44 |
2 files changed, 45 insertions, 1 deletions
diff --git a/phpBB/styles/subSilver/template/mcp_warn_front.html b/phpBB/styles/subSilver/template/mcp_warn_front.html index 358ffb02a4..e250f3109d 100755 --- a/phpBB/styles/subSilver/template/mcp_warn_front.html +++ b/phpBB/styles/subSilver/template/mcp_warn_front.html @@ -32,7 +32,7 @@ <tr> <td class="row1" width="15%" valign="top"><span class="gen"><a href="{highest.U_USER}">{highest.USERNAME}</a></span></td> <td class="row2" width="15%" valign="top"><span class="gen">{highest.WARNINGS}</span></td> - <td class="row1" width="15%" valign="top"><span class="gen"></span></td> + <td class="row1" width="15%" valign="top"><span class="gen">{highest.WARNING_TIME}</span></td> <td class="row2" width="15%" valign="top"><span class="gen"><a href="{highest.U_NOTES}">{L_VIEW_NOTES}</a></span></td> </tr> <!-- BEGINELSE --> diff --git a/phpBB/styles/subSilver/template/mcp_warn_list.html b/phpBB/styles/subSilver/template/mcp_warn_list.html new file mode 100755 index 0000000000..5b23f9705e --- /dev/null +++ b/phpBB/styles/subSilver/template/mcp_warn_list.html @@ -0,0 +1,44 @@ +<!-- INCLUDE mcp_header.html --> + + <!-- $Id$ --> + <form method="post" name="mcp" action="{U_POST_ACTION}"> + + <table class="tablebg" width="100%" cellspacing="1"> + <tr> + <td class="row3" colspan="5" align="center"><b class="gen">{L_WARNED_USERS}</b></td> + </tr> + <tr> + <th> {L_USERNAME} </th> + <th> {L_WARNINGS} </th> + <th> {L_LATEST_TIME} </th> + <th> </th> + </tr> + <!-- BEGIN user --> + <tr> + <td class="row1" width="15%" valign="top"><span class="gen"><a href="{user.U_USER}">{user.USERNAME}</a></span></td> + <td class="row2" width="15%" valign="top"><span class="gen">{user.WARNINGS}</span></td> + <td class="row1" width="15%" valign="top"><span class="gen">{user.WARNING_TIME}</span></td> + <td class="row2" width="15%" valign="top"><span class="gen"><a href="{user.U_NOTES}">{L_VIEW_NOTES}</a></span></td> + </tr> + <!-- BEGINELSE --> + <tr> + <td class="row1" colspan="5" align="center"><span class="gen">{L_WARNINGS_ZERO_TOTAL}</span></td> + </tr> + <!-- END user --> + <tr align="center"> + <td class="row3" colspan="4"><span class="gensmall">{L_DISPLAY_POSTS}:</span> {S_SELECT_SORT_DAYS} <span class="gensmall">{L_SORT_BY}</span> {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} <input class="btnlite" type="submit" value="{L_GO}" name="sort" /></td> + </tr> + </table> + + <table width="100%" cellspacing="0" cellpadding="0"> + <tr> + <td class="pagination">{PAGE_NUMBER} [ {TOTAL_USERS} ]</td> + <td align="right"><span class="pagination"><!-- IF PAGINATION --><a href="javascript:jumpto();">{L_GOTO_PAGE}</a> <!-- IF PREVIOUS_PAGE --><a href="{PREVIOUS_PAGE}">{L_PREVIOUS}</a> <!-- ENDIF -->{PAGINATION}<!-- IF NEXT_PAGE --> <a href="{NEXT_PAGE}">{L_NEXT}</a><!-- ENDIF --><!-- ENDIF --></span></td> + </tr> + </table> + + </form> + + <br clear="all" /><br /> + +<!-- INCLUDE mcp_footer.html -->
\ No newline at end of file |
