blob: e8870e27a2c60839e6044464c19421deae551543 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<!-- INCLUDE overall_header.html -->
<table width="95%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
<td align="left"><span class="nav"><a href="{U_INDEX}">{L_INDEX}</a></span></td>
</tr>
</table>
<table class="tablebg" width="95%" cellpadding="2" cellspacing="1" border="0" align="center">
<tr>
<th width="35%" height="28"><a class="th" href="{U_SORT_USERNAME}">{L_USERNAME}</a></th>
<th width="25%"><a class="th" href="{U_SORT_UPDATED}">{L_LAST_UPDATED}</a></th>
<th width="40%"><a class="th" href="{U_SORT_LOCATION}">{L_FORUM_LOCATION}</a></th>
</tr>
<tr>
<td class="cat" colspan="3" height="28"><b class="cattitle">{TOTAL_REGISTERED_USERS_ONLINE}</b></td>
</tr>
<!-- BEGIN reg_user_row -->
<!-- IF reg_user_row.S_ROW_COUNT is even -->
<tr class="row1">
<!-- ELSE -->
<tr class="row2">
<!-- ENDIF -->
<td class="gen" width="35%" height="28"> <a href="{reg_user_row.U_USER_PROFILE}" title="{reg_user_row.USER_IP}">{reg_user_row.USERNAME}</a> </td>
<td class="gen" width="25%" align="center" nowrap="nowrap"> {reg_user_row.LASTUPDATE} </td>
<td class="gen" width="40%"> <a href="{reg_user_row.U_FORUM_LOCATION}">{reg_user_row.FORUM_LOCATION}</a> </td>
</tr>
<!-- END reg_user_row -->
<!-- IF LEGEND neq '' -->
<tr>
<td colspan="3" class="row3"><b class="gensmall">{L_LEGEND} :: {LEGEND}</b></td>
</tr>
<!-- ENDIF -->
<tr>
<td class="cat" colspan="3" height="28"><b class="cattitle">{TOTAL_GUEST_USERS_ONLINE}</b></td>
</tr>
<!-- BEGIN guest_user_row -->
<!-- IF guest_user_row.S_ROW_COUNT is even -->
<tr class="row1">
<!-- ELSE -->
<tr class="row2">
<!-- ENDIF -->
<td class="gen" width="35%" height="28"> <span title="{guest_user_row.USER_IP}">{guest_user_row.USERNAME}</span> </td>
<td class="gen" width="25%" align="center" nowrap="nowrap"> {guest_user_row.LASTUPDATE} </td>
<td class="gen" width="40%"> <a href="{guest_user_row.U_FORUM_LOCATION}">{guest_user_row.FORUM_LOCATION}</a> </td>
</tr>
<!-- END guest_user_row -->
</table>
<table width="95%" cellspacing="2" cellpadding="2" border="0" align="center">
<tr>
<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
<td align="right" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
</tr>
</table>
<br clear="all" />
<table width="95%" cellspacing="2" border="0" align="center">
<tr>
<td valign="top" align="right"><!-- INCLUDE jumpbox.html --></td>
</tr>
</table>
<!-- INCLUDE overall_footer.html -->
|