mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Potential split of viewonline status
git-svn-id: file:///svn/phpbb/trunk@153 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
89d1446795
commit
b91f972c48
2 changed files with 48 additions and 0 deletions
23
phpBB/templates/Default/viewonline_body_guests.tpl
Normal file
23
phpBB/templates/Default/viewonline_body_guests.tpl
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<tr>
|
||||||
|
<td><table border="0" align="center" width="100%" bgcolor="#000000" cellpadding="0" cellspacing="1">
|
||||||
|
<tr>
|
||||||
|
<td><table border="0" width="100%" cellpadding="3" cellspacing="1">
|
||||||
|
<tr class="tableheader">
|
||||||
|
<td colspan="4" align="center"><b>{L_ANONYMOUS_ONLINE}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="catheader">
|
||||||
|
<td width="30%" align="center"> {L_USERNAME} </td>
|
||||||
|
<td width="30%" align="center"> {L_LASTUPDATE} </td>
|
||||||
|
<td width="40%" align="center"> {L_LOCATION} </td>
|
||||||
|
</tr>
|
||||||
|
<!-- BEGIN userguestrow -->
|
||||||
|
<tr bgcolor="{userguestrow.ROW_COLOR}" class="tablebody">
|
||||||
|
<td width="30%"> {userguestrow.USERNAME} </td>
|
||||||
|
<td width="30%" align="center"> {userguestrow.LASTUPDATE} </td>
|
||||||
|
<td width="40%"><a href="{userguestrow.LOCATION_URL}"> {userguestrow.LOCATION} </a></td>
|
||||||
|
</tr>
|
||||||
|
<!-- END userguestrow -->
|
||||||
|
</table></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
|
</tr>
|
25
phpBB/templates/Default/viewonline_body_reg.tpl
Normal file
25
phpBB/templates/Default/viewonline_body_reg.tpl
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
<tr>
|
||||||
|
<td><table border="0" align="center" width="100%" bgcolor="#000000" cellpadding="0" cellspacing="1">
|
||||||
|
<tr>
|
||||||
|
<td><table border="0" width="100%" cellpadding="3" cellspacing="1">
|
||||||
|
<tr class="tableheader">
|
||||||
|
<td colspan="4" align="center"><b>{L_REGISTERED_ONLINE}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="catheader">
|
||||||
|
<td width="30%" align="center"> {L_USERNAME} </td>
|
||||||
|
<td width="20%" align="center"> {L_LASTUPDATE} </td>
|
||||||
|
<td width="10%" align="center"> {L_LOGGED_ON} </td>
|
||||||
|
<td width="40%" align="center"> {L_LOCATION} </td>
|
||||||
|
</tr>
|
||||||
|
<!-- BEGIN userregrow -->
|
||||||
|
<tr bgcolor="{userregrow.ROW_COLOR}" class="tablebody">
|
||||||
|
<td width="30%"> <a href="profile.{PHPEX}?mode=view&{POST_USER_URL}={userregrow.USER_ID}">{userregrow.USERNAME}</a> </td>
|
||||||
|
<td width="20%" align="center"> {userregrow.LASTUPDATE} </td>
|
||||||
|
<td width="10%" align="center"> {userregrow.LOGGEDON} </td>
|
||||||
|
<td width="40%"> <a href="{userregrow.LOCATION_URL}">{userregrow.LOCATION}</a> </td>
|
||||||
|
</tr>
|
||||||
|
<!-- END userregrow -->
|
||||||
|
</table></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
|
</tr>
|
Loading…
Add table
Reference in a new issue