diff options
Diffstat (limited to 'phpBB/styles/subsilver2/template/memberlist_team.html')
-rw-r--r-- | phpBB/styles/subsilver2/template/memberlist_team.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/phpBB/styles/subsilver2/template/memberlist_team.html b/phpBB/styles/subsilver2/template/memberlist_team.html new file mode 100644 index 0000000000..75fade184c --- /dev/null +++ b/phpBB/styles/subsilver2/template/memberlist_team.html @@ -0,0 +1,50 @@ +<!-- INCLUDE overall_header.html --> + +<form method="post" action="{S_MODE_ACTION}"> + +<table class="tablebg" width="100%" cellspacing="1"> +<tr> + <th nowrap="nowrap" width="20%">{L_USERNAME}</th> + <!-- IF S_DISPLAY_MODERATOR_FORUMS --><th nowrap="nowrap" width="25%">{L_FORUMS}</th><!-- ENDIF --> + <th nowrap="nowrap" width="20%">{L_PRIMARY_GROUP}</th> + <th nowrap="nowrap" width="15%">{L_RANK}</th> + <th nowrap="nowrap" width="11%">{L_SEND_MESSAGE}</th> +</tr> +<!-- BEGIN group --> +<tr class="row3"> + <td colspan="5"><b class="gensmall"><!-- IF group.U_GROUP --><a href="{group.U_GROUP}">{group.GROUP_NAME}</a><!-- ELSE -->{group.GROUP_NAME}<!-- ENDIF --></b></td> +</tr> +<!-- BEGIN user --> + <!-- IF group.user.S_ROW_COUNT is even --><tr class="row2"><!-- ELSE --><tr class="row1"><!-- ENDIF --> + + <td class="gen" align="center"><!-- EVENT memberlist_team_username_prepend --><strong>{group.user.USERNAME_FULL}</strong><!-- IF group.user.S_INACTIVE --> <em>({L_INACTIVE})</em><!-- ENDIF --><!-- EVENT memberlist_team_username_append --></td> + <!-- IF S_DISPLAY_MODERATOR_FORUMS --><td class="gensmall" align="center"><!-- IF group.user.FORUM_OPTIONS --><select style="width: 100%;">{group.user.FORUMS}</select><!-- ELSEIF group.user.FORUMS -->{group.user.FORUMS}<!-- ELSE -->-<!-- ENDIF --></td><!-- ENDIF --> + <td class="gensmall" align="center" nowrap="nowrap"> + <!-- IF group.user.U_GROUP --> + <a<!-- IF group.user.GROUP_COLOR --> style="font-weight: bold; color:#{group.user.GROUP_COLOR}"<!-- ENDIF --> href="{group.user.U_GROUP}">{group.user.GROUP_NAME}</a> + <!-- ELSE --> + {group.user.GROUP_NAME} + <!-- ENDIF --> + </td> + <td class="gen" align="center"><!-- IF group.user.RANK_IMG -->{group.user.RANK_IMG}<!-- ELSE -->{group.user.RANK_TITLE}<!-- ENDIF --></td> + <td class="gen" align="center"> <!-- IF group.user.U_PM --><a href="{group.user.U_PM}" class="imageset">{PM_IMG}</a><!-- ENDIF --> </td> +</tr> +<!-- BEGINELSE --> + <tr> + <td class="row1" colspan="5" align="center"><span class="gen">{L_NO_MEMBERS}</span></td> + </tr> +<!-- END user --> +<!-- END group --> +</table> + +</form> + +<br clear="all" /> + +<!-- INCLUDE breadcrumbs.html --> + +<br clear="all" /> + +<div style="float: {S_CONTENT_FLOW_END};"><!-- INCLUDE jumpbox.html --></div> + +<!-- INCLUDE overall_footer.html --> |