1 rizwank 1.1
2 <h1>{L_WELCOME}</h1>
3
4 <p>{L_ADMIN_INTRO}</p>
5
6 <h1>{L_FORUM_STATS}</h1>
7
8 <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
9 <tr>
10 <th width="25%" nowrap="nowrap" height="25" class="thCornerL">{L_STATISTIC}</th>
11 <th width="25%" height="25" class="thTop">{L_VALUE}</th>
12 <th width="25%" nowrap="nowrap" height="25" class="thTop">{L_STATISTIC}</th>
13 <th width="25%" height="25" class="thCornerR">{L_VALUE}</th>
14 </tr>
15 <tr>
16 <td class="row1" nowrap="nowrap">{L_NUMBER_POSTS}:</td>
17 <td class="row2"><b>{NUMBER_OF_POSTS}</b></td>
18 <td class="row1" nowrap="nowrap">{L_POSTS_PER_DAY}:</td>
19 <td class="row2"><b>{POSTS_PER_DAY}</b></td>
20 </tr>
21 <tr>
22 rizwank 1.1 <td class="row1" nowrap="nowrap">{L_NUMBER_TOPICS}:</td>
23 <td class="row2"><b>{NUMBER_OF_TOPICS}</b></td>
24 <td class="row1" nowrap="nowrap">{L_TOPICS_PER_DAY}:</td>
25 <td class="row2"><b>{TOPICS_PER_DAY}</b></td>
26 </tr>
27 <tr>
28 <td class="row1" nowrap="nowrap">{L_NUMBER_USERS}:</td>
29 <td class="row2"><b>{NUMBER_OF_USERS}</b></td>
30 <td class="row1" nowrap="nowrap">{L_USERS_PER_DAY}:</td>
31 <td class="row2"><b>{USERS_PER_DAY}</b></td>
32 </tr>
33 <tr>
34 <td class="row1" nowrap="nowrap">{L_BOARD_STARTED}:</td>
35 <td class="row2"><b>{START_DATE}</b></td>
36 <td class="row1" nowrap="nowrap">{L_AVATAR_DIR_SIZE}:</td>
37 <td class="row2"><b>{AVATAR_DIR_SIZE}</b></td>
38 </tr>
39 <tr>
40 <td class="row1" nowrap="nowrap">{L_DB_SIZE}:</td>
41 <td class="row2"><b>{DB_SIZE}</b></td>
42 <td class="row1" nowrap="nowrap">{L_GZIP_COMPRESSION}:</td>
43 rizwank 1.1 <td class="row2"><b>{GZIP_COMPRESSION}</b></td>
44 </tr>
45 </table>
46 <h1>{L_WHO_IS_ONLINE}</h1>
47
48 <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
49 <tr>
50 <th width="20%" class="thCornerL" height="25"> {L_USERNAME} </th>
51 <th width="20%" height="25" class="thTop"> {L_STARTED} </th>
52 <th width="20%" class="thTop"> {L_LAST_UPDATE} </th>
53 <th width="20%" class="thCornerR"> {L_FORUM_LOCATION} </th>
54 <th width="20%" height="25" class="thCornerR"> {L_IP_ADDRESS} </th>
55 </tr>
56 <!-- BEGIN reg_user_row -->
57 <tr>
58 <td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_USER_PROFILE}" class="gen">{reg_user_row.USERNAME}</a></span> </td>
59 <td width="20%" align="center" class="{reg_user_row.ROW_CLASS}"> <span class="gen">{reg_user_row.STARTED}</span> </td>
60 <td width="20%" align="center" nowrap="nowrap" class="{reg_user_row.ROW_CLASS}"> <span class="gen">{reg_user_row.LASTUPDATE}</span> </td>
61 <td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_FORUM_LOCATION}" class="gen">{reg_user_row.FORUM_LOCATION}</a></span> </td>
62 <td width="20%" class="{reg_user_row.ROW_CLASS}"> <span class="gen"><a href="{reg_user_row.U_WHOIS_IP}" class="gen" target="_phpbbwhois">{reg_user_row.IP_ADDRESS}</a></span> </td>
63 </tr>
64 rizwank 1.1 <!-- END reg_user_row -->
65 <tr>
66 <td colspan="5" height="1" class="row3"><img src="../templates/subSilver/images/spacer.gif" width="1" height="1" alt="."></td>
67 </tr>
68 <!-- BEGIN guest_user_row -->
69 <tr>
70 <td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.USERNAME}</span> </td>
71 <td width="20%" align="center" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.STARTED}</span> </td>
72 <td width="20%" align="center" nowrap="nowrap" class="{guest_user_row.ROW_CLASS}"> <span class="gen">{guest_user_row.LASTUPDATE}</span> </td>
73 <td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen"><a href="{guest_user_row.U_FORUM_LOCATION}" class="gen">{guest_user_row.FORUM_LOCATION}</a></span> </td>
74 <td width="20%" class="{guest_user_row.ROW_CLASS}"> <span class="gen"><a href="{guest_user_row.U_WHOIS_IP}" target="_phpbbwhois">{guest_user_row.IP_ADDRESS}</a></span> </td>
75 </tr>
76 <!-- END guest_user_row -->
77 </table>
78
79 <br />
|