1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-26 01:43:45 +02:00

Started on the admin overview/index page

git-svn-id: file:///svn/phpbb/trunk@734 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
James Atkinson
2001-07-23 18:30:35 +00:00
parent 273314d0be
commit fb52fdddb9
4 changed files with 257 additions and 1 deletions

View File

@@ -0,0 +1,47 @@
<h1>Welcome to phpBB</h1>
<p>
Thank you for choosing phpBB as your forum solution. This screen will give you a quick overview of all the various statistics of your board. You can get back to this page by clicking on the <i><u>overview</u></i> link in the left pane.<br />
The other links on the left hand side of this screen will allow you to control every aspect of your forum experiance, each screen will have instructions on how to use the tools.
</p>
<h2>Forum Statistics</h2>
<p>
Current number of posts: <b>{NUMBER_OF_POSTS}</b><br />
Current number of topics: <b>{NUMBER_OF_TOPICS}</b><br />
Current number of users: <b>{NUMBER_OF_USERS}</b><br />
<br />
Posts per day: <b>{POSTS_PER_DAY}</b><br />
Topics per day: <b>{TOPICS_PER_DAY}</b><br />
Users per day: <b>{USERS_PER_DAY}</b><br />
<br />
Avatar directory size: <b>{AVATAR_DIR_SIZE}</b><br />
Database size: <b>{DB_SIZE}</b>
</p>
<h2>Users Online</h2>
<table border="0" cellpadding="1" cellspacing="0" width="98%" align="center">
<tr>
<td class="tablebg">
<table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
<th width="25%">&nbsp;{L_USERNAME}&nbsp;</th>
<th width="25%">&nbsp;{L_LAST_UPDATE}&nbsp;</th>
<th width="25%">&nbsp;{L_LOCATION}&nbsp;</th>
<th width="25%">&nbsp;{L_IPADDRESS}&nbsp;</th>
</tr>
<!-- BEGIN userrow -->
<tr bgcolor="{userrow.ROW_COLOR}">
<td width="25%">&nbsp;<span class="gen"><a href="{userrow.U_USER_PROFILE}">{userrow.USERNAME}</a></span>&nbsp;</td>
<td width="25%" align="center">&nbsp;<span class="gen">{userrow.LASTUPDATE}</span>&nbsp;</td>
<td width="25%">&nbsp;<span class="gen"><a href="{userrow.U_FORUM_LOCATION}">{userrow.LOCATION}</a></span>&nbsp;</td>
<td width="25%">&nbsp;<span class="gen">{userrow.IPADDRESS}</span>&nbsp;</td>
</tr>
<!-- END userrow -->
</table>
</td>
</tr>
</table>
<br clear="all">