diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-07-09 16:23:57 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-07-09 16:23:57 +0000 |
commit | 46af817cb058e2eecd89081af4a40075426a32ef (patch) | |
tree | d27156cb086223b91b8c67f23db969a980e1b7b8 /phpBB/adm/style/acp_groups.html | |
parent | 455add06f29400af3176eea7c4958ed772934460 (diff) | |
download | forums-46af817cb058e2eecd89081af4a40075426a32ef.tar forums-46af817cb058e2eecd89081af4a40075426a32ef.tar.gz forums-46af817cb058e2eecd89081af4a40075426a32ef.tar.bz2 forums-46af817cb058e2eecd89081af4a40075426a32ef.tar.xz forums-46af817cb058e2eecd89081af4a40075426a32ef.zip |
- tackle some usability issues
- fix bug #3147
- added the lock-images made by SHS`
- fixed MSSQL errors (adding the correct ESCAPE sequence)
git-svn-id: file:///svn/phpbb/trunk@6161 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style/acp_groups.html')
-rw-r--r-- | phpBB/adm/style/acp_groups.html | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/phpBB/adm/style/acp_groups.html b/phpBB/adm/style/acp_groups.html index 55e7220cf4..c4dc501d93 100644 --- a/phpBB/adm/style/acp_groups.html +++ b/phpBB/adm/style/acp_groups.html @@ -153,12 +153,16 @@ <a href="{U_BACK}" style="float: right">« {L_BACK}</a> - <h1>{L_GROUP_MEMBERS}</h1> + <h1>{L_GROUP_MEMBERS} :: {GROUP_NAME}</h1> <p>{L_GROUP_MEMBERS_EXPLAIN}</p> <form id="list" method="post" action="{U_ACTION}"> + <fieldset class="quick"> + <a href="{U_DEFAULT_ALL}">» {L_MAKE_DEFAULT_FOR_ALL}</a> + </fieldset> + <table cellspacing="1"> <thead> <tr> @@ -269,9 +273,10 @@ <col class="col1" /><col class="col1" /><col class="col2" /><col class="col2" /><col class="col2" /> <thead> <tr> - <th style="width: 50%">{L_MANAGE}</th> + <th style="width: 50%">{L_GROUP}</th> <th>{L_TOTAL_MEMBERS}</th> - <th colspan="3">{L_OPTIONS}</th> + <th colspan="2">{L_OPTIONS}</th> + <th>{L_ACTION}</th> </tr> </thead> <tbody> @@ -297,18 +302,19 @@ <col class="col1" /><col class="col1" /><col class="col2" /><col class="col2" /><col class="col2" /> <thead> <tr> - <th style="width: 50%">{L_MANAGE}</th> + <th style="width: 50%">{L_GROUP}</th> <th>{L_TOTAL_MEMBERS}</th> - <th colspan="3">{L_OPTIONS}</th> + <th colspan="2">{L_OPTIONS}</th> + <th>{L_ACTION}</th> </tr> </thead> <tbody> <!-- ELSE --> <tr> - <td><a href="{groups.U_LIST}">{groups.GROUP_NAME}</a></td> + <td><strong>{groups.GROUP_NAME}</strong></td> <td style="text-align: center;">{groups.TOTAL_MEMBERS}</td> - <td style="text-align: center;"><a href="{groups.U_DEFAULT}">{L_GROUP_DEFAULT}</a></td> - <td style="text-align: center;"><a href="{groups.U_EDIT}">{L_EDIT}</a></td> + <td style="text-align: center;"><a href="{groups.U_EDIT}">{L_SETTINGS}</a></td> + <td style="text-align: center;"><a href="{groups.U_LIST}">{L_MEMBERS}</a></td> <td style="text-align: center;"><!-- IF not groups.S_GROUP_SPECIAL and groups.U_DELETE --><a href="{groups.U_DELETE}">{L_DELETE}</a><!-- ELSE -->{L_DELETE}<!-- ENDIF --></td> </tr> <!-- ENDIF --> |