Verzeichnisstruktur phpBB-3.0.0
- Veröffentlicht
- 12.12.2007
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
memberlist_leaders.html
01 <!-- INCLUDE overall_header.html -->
02
03 <form method="post" action="{S_MODE_ACTION}">
04
05 <table class="tablebg" width="100%" cellspacing="1">
06 <tr>
07 <th nowrap="nowrap" width="20%">{L_USERNAME}</th>
08 <th nowrap="nowrap" width="25%">{L_FORUMS}</th>
09 <th nowrap="nowrap" width="20%">{L_PRIMARY_GROUP}</th>
10 <th nowrap="nowrap" width="15%">{L_RANK}</th>
11 <th nowrap="nowrap" width="11%">{L_SEND_MESSAGE}</th>
12 </tr>
13 <tr class="row3">
14 <td colspan="5"><b class="gensmall">{L_ADMINISTRATORS}</b></td>
15 </tr>
16 <!-- BEGIN admin -->
17 <!-- IF admin.S_ROW_COUNT is even --><tr class="row2"><!-- ELSE --><tr class="row1"><!-- ENDIF -->
18
19 <td class="gen" align="center"><strong>{admin.USERNAME_FULL}</strong></td>
20 <td class="gensmall" align="center"> </td>
21 <td class="gensmall" align="center" nowrap="nowrap">
22 <!-- IF admin.U_GROUP -->
23 <a<!-- IF admin.GROUP_COLOR --> style="font-weight: bold; color:#{admin.GROUP_COLOR}"<!-- ENDIF --> href="{admin.U_GROUP}">{admin.GROUP_NAME}</a>
24 <!-- ELSE -->
25 {admin.GROUP_NAME}
26 <!-- ENDIF -->
27 </td>
28 <td class="gen" align="center"><!-- IF admin.RANK_IMG -->{admin.RANK_IMG}<!-- ELSE -->{admin.RANK_TITLE}<!-- ENDIF --></td>
29 <td class="gen" align="center"> <!-- IF admin.U_PM --><a href="{admin.U_PM}">{PM_IMG}</a><!-- ENDIF --> </td>
30 </tr>
31 <!-- BEGINELSE -->
32 <tr>
33 <td class="row1" colspan="5" align="center"><span class="gen">{L_NO_ADMINISTRATORS}</span></td>
34 </tr>
35 <!-- END admin -->
36 <tr class="row3">
37 <td colspan="5"><b class="gensmall">{L_MODERATORS}</b></td>
38 </tr>
39 <!-- BEGIN mod -->
40 <!-- IF mod.S_ROW_COUNT is even --><tr class="row2"><!-- ELSE --><tr class="row1"><!-- ENDIF -->
41
42 <td class="gen" align="center"><strong>{mod.USERNAME_FULL}</strong></td>
43 <td align="center"><!-- IF not mod.FORUMS -->{L_ALL_FORUMS}<!-- ELSE --><select style="width: 200px;">{mod.FORUMS}</select><!-- ENDIF --> </td>
44 <td class="gensmall" align="center" nowrap="nowrap">
45 <!-- IF mod.U_GROUP -->
46 <a<!-- IF mod.GROUP_COLOR --> style="font-weight: bold; color:#{mod.GROUP_COLOR}"<!-- ENDIF --> href="{mod.U_GROUP}">{mod.GROUP_NAME}</a>
47 <!-- ELSE -->
48 {mod.GROUP_NAME}
49 <!-- ENDIF -->
50 </td>
51 <td class="gen" align="center"><!-- IF mod.RANK_IMG -->{mod.RANK_IMG}<!-- ELSE -->{mod.RANK_TITLE}<!-- ENDIF --></td>
52 <td class="gen" align="center"> <!-- IF mod.U_PM --><a href="{mod.U_PM}">{PM_IMG}</a><!-- ENDIF --> </td>
53 </tr>
54 <!-- BEGINELSE -->
55 <tr>
56 <td class="row1" colspan="5" align="center"><span class="gen">{L_NO_MODERATORS}</span></td>
57 </tr>
58 <!-- END mod -->
59 </table>
60
61 </form>
62
63 <br clear="all" />
64
65 <!-- INCLUDE breadcrumbs.html -->
66
67 <br clear="all" />
68
69 <div style="float: {S_CONTENT_FLOW_END};"><!-- INCLUDE jumpbox.html --></div>
70
71 <!-- INCLUDE overall_footer.html -->