|
From: Bart v. B. <ba...@us...> - 2002-01-16 19:08:15
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv20588/templates/subSilver
Modified Files:
memberlist_body.tpl
Log Message:
Added row numbers to memberslist (to check out how you're ranked with # of posts ;)
Index: memberlist_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/memberlist_body.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** memberlist_body.tpl 2001/11/18 14:01:35 1.4
--- memberlist_body.tpl 2002/01/16 19:08:10 1.5
***************
*** 11,15 ****
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
! <th height="25" class="thCornerL"> </th>
<th class="thTop">{L_USERNAME}</th>
<th class="thTop">{L_EMAIL}</th>
--- 11,16 ----
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
! <th height="25" class="thCornerL">#</th>
! <th class="thTop"> </th>
<th class="thTop">{L_USERNAME}</th>
<th class="thTop">{L_EMAIL}</th>
***************
*** 21,24 ****
--- 22,26 ----
<!-- BEGIN memberrow -->
<tr>
+ <td class="{memberrow.ROW_CLASS}" align="center"><span class="gen"> {memberrow.ROW_NR} </span></td>
<td class="{memberrow.ROW_CLASS}" align="center"> {memberrow.PM_IMG} </td>
<td class="{memberrow.ROW_CLASS}" align="center"><span class="gen"><a href="{memberrow.U_VIEWPROFILE}" class="gen">{memberrow.USERNAME}</a></span></td>
***************
*** 31,35 ****
<!-- END memberrow -->
<tr>
! <td class="catbottom" colspan="7" height="28"> </td>
</tr>
</table>
--- 33,37 ----
<!-- END memberrow -->
<tr>
! <td class="catbottom" colspan="8" height="28"> </td>
</tr>
</table>
|