1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00
php-phpbb/phpBB/styles/subSilver/template/mcp_warn_front.html
Meik Sievertsen 431e494ae4 To all people having their bug status set to fixed: SF pserver CVS access is currently down, therefore the snapshots are still out of date.
- fix a bunch of bugs
- <!-- $Id$ --> is no longer allowed in template (.html) files
- changed layout of private message screens (folders are menu items)
- removed unread mode for private messages
- added new feature to template engine - "jump out of loop" or "loop another loop within my loop" :D (will be documented within the coding guidelines)
- added autologin field to sessions
- check session length checks
- added add_log statement to sessions to track session valid to invalid changes if ip/browser change depending on config settings (only debug)
- added multibyte support for various variables (exception at the moment is usernames which needs some discussion)
- hopefully not broke something. :/


git-svn-id: file:///svn/phpbb/trunk@5765 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-04-06 17:15:45 +00:00

72 lines
2.8 KiB
HTML
Executable File

<!-- INCLUDE mcp_header.html -->
<form method="post" name="mcp" action="{U_POST_ACTION}">
<table class="bg" width="75%" cellspacing="1" cellpadding="4" border="0" align="center">
<tr>
<th colspan="2"align="center">{L_SELECT_USER}</th>
</tr>
<tr>
<td class="row1" width="40%"><b class="gen">{L_FIND_USERNAME}: </b><br /><span class="gensmall">[ <a href="{U_FIND_MEMBER}" onclick="window.open('{U_FIND_MEMBER}', '_phpbbsearch', 'HEIGHT=500,resizable=yes,scrollbars=yes,WIDTH=740');return false;">{L_FIND_USERNAME}</a> ]</span></td>
<td class="row2"><input type="text" class="post" name="username" maxlength="50" size="20" /></td>
</tr>
<tr>
<td class="cat" colspan="2" align="center"><input type="submit" name="submituser" value="{L_SUBMIT}" class="btnmain" /></td>
</tr>
</table>
</form>
<br clear="all" /><br />
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="row3" colspan="5" align="center"><b class="gen">{L_MOST_WARNINGS}</b></td>
</tr>
<tr>
<th>&nbsp;{L_USERNAME}&nbsp;</th>
<th>&nbsp;{L_WARNINGS}&nbsp;</th>
<th>&nbsp;{L_LATEST_WARNING_TIME}&nbsp;</th>
<th>&nbsp;</th>
</tr>
<!-- BEGIN highest -->
<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">{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 -->
<tr>
<td class="row1" colspan="5" align="center"><span class="gen">{L_WARNINGS_ZERO_TOTAL}</span></td>
</tr>
<!-- END highest -->
</table>
<br clear="all" /><br />
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="row3" colspan="5" align="center"><b class="gen">{L_LATEST_WARNINGS}</b></td>
</tr>
<tr>
<th>&nbsp;{L_USERNAME}&nbsp;</th>
<th>&nbsp;{L_TIME}&nbsp;</th>
<th>&nbsp;{L_TOTAL_WARNINGS}&nbsp;</th>
<th>&nbsp;</th>
</tr>
<!-- BEGIN latest -->
<tr>
<td class="row1" width="15%" valign="top"><span class="gen"><a href="{latest.U_USER}">{latest.USERNAME}</a></span></td>
<td class="row2" width="15%" valign="top"><span class="gen">{latest.WARNING_TIME}</span></td>
<td class="row1" width="15%" valign="top"><span class="gen">{latest.WARNINGS}</span></td>
<td class="row2" width="15%" valign="top"><span class="gen"><a href="{latest.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 latest -->
</table>
<br clear="all" /><br />
<!-- INCLUDE mcp_footer.html -->