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:
47
phpBB/templates/PSO/admin/admin_index_body.tpl
Normal file
47
phpBB/templates/PSO/admin/admin_index_body.tpl
Normal 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%"> {L_USERNAME} </th>
|
||||
<th width="25%"> {L_LAST_UPDATE} </th>
|
||||
<th width="25%"> {L_LOCATION} </th>
|
||||
<th width="25%"> {L_IPADDRESS} </th>
|
||||
</tr>
|
||||
<!-- BEGIN userrow -->
|
||||
<tr bgcolor="{userrow.ROW_COLOR}">
|
||||
<td width="25%"> <span class="gen"><a href="{userrow.U_USER_PROFILE}">{userrow.USERNAME}</a></span> </td>
|
||||
<td width="25%" align="center"> <span class="gen">{userrow.LASTUPDATE}</span> </td>
|
||||
<td width="25%"> <span class="gen"><a href="{userrow.U_FORUM_LOCATION}">{userrow.LOCATION}</a></span> </td>
|
||||
<td width="25%"> <span class="gen">{userrow.IPADDRESS}</span> </td>
|
||||
</tr>
|
||||
<!-- END userrow -->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br clear="all">
|
Reference in New Issue
Block a user