aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-04-15 22:04:35 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-04-15 22:04:35 +0000
commitb91f972c487a8910d535f0c8600d9ab622f3d735 (patch)
treec5e531a4031fe704d1c76285d869a3166be02d02 /phpBB
parent89d1446795ca835cc531ef0918e5917e7dd0e0c9 (diff)
downloadforums-b91f972c487a8910d535f0c8600d9ab622f3d735.tar
forums-b91f972c487a8910d535f0c8600d9ab622f3d735.tar.gz
forums-b91f972c487a8910d535f0c8600d9ab622f3d735.tar.bz2
forums-b91f972c487a8910d535f0c8600d9ab622f3d735.tar.xz
forums-b91f972c487a8910d535f0c8600d9ab622f3d735.zip
Potential split of viewonline status
git-svn-id: file:///svn/phpbb/trunk@153 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/templates/Default/viewonline_body_guests.tpl23
-rw-r--r--phpBB/templates/Default/viewonline_body_reg.tpl25
2 files changed, 48 insertions, 0 deletions
diff --git a/phpBB/templates/Default/viewonline_body_guests.tpl b/phpBB/templates/Default/viewonline_body_guests.tpl
new file mode 100644
index 0000000000..6e7c62b150
--- /dev/null
+++ b/phpBB/templates/Default/viewonline_body_guests.tpl
@@ -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">&nbsp;{L_USERNAME}&nbsp;</td>
+ <td width="30%" align="center">&nbsp;{L_LASTUPDATE}&nbsp;</td>
+ <td width="40%" align="center">&nbsp;{L_LOCATION}&nbsp;</td>
+ </tr>
+ <!-- BEGIN userguestrow -->
+ <tr bgcolor="{userguestrow.ROW_COLOR}" class="tablebody">
+ <td width="30%">&nbsp;{userguestrow.USERNAME}&nbsp;</td>
+ <td width="30%" align="center">&nbsp;{userguestrow.LASTUPDATE}&nbsp;</td>
+ <td width="40%"><a href="{userguestrow.LOCATION_URL}">&nbsp;{userguestrow.LOCATION}&nbsp;</a></td>
+ </tr>
+ <!-- END userguestrow -->
+ </table></td>
+ </tr>
+ </table></td>
+</tr> \ No newline at end of file
diff --git a/phpBB/templates/Default/viewonline_body_reg.tpl b/phpBB/templates/Default/viewonline_body_reg.tpl
new file mode 100644
index 0000000000..85f83a10f2
--- /dev/null
+++ b/phpBB/templates/Default/viewonline_body_reg.tpl
@@ -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">&nbsp;{L_USERNAME}&nbsp;</td>
+ <td width="20%" align="center">&nbsp;{L_LASTUPDATE}&nbsp;</td>
+ <td width="10%" align="center">&nbsp;{L_LOGGED_ON}&nbsp;</td>
+ <td width="40%" align="center">&nbsp;{L_LOCATION}&nbsp;</td>
+ </tr>
+ <!-- BEGIN userregrow -->
+ <tr bgcolor="{userregrow.ROW_COLOR}" class="tablebody">
+ <td width="30%">&nbsp;<a href="profile.{PHPEX}?mode=view&{POST_USER_URL}={userregrow.USER_ID}">{userregrow.USERNAME}</a>&nbsp;</td>
+ <td width="20%" align="center">&nbsp;{userregrow.LASTUPDATE}&nbsp;</td>
+ <td width="10%" align="center">&nbsp;{userregrow.LOGGEDON}&nbsp;</td>
+ <td width="40%">&nbsp;<a href="{userregrow.LOCATION_URL}">{userregrow.LOCATION}</a>&nbsp;</td>
+ </tr>
+ <!-- END userregrow -->
+ </table></td>
+ </tr>
+ </table></td>
+</tr> \ No newline at end of file