diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2009-07-14 20:35:53 +0000 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2009-07-14 20:35:53 +0000 |
commit | e3866c939d78b925844cd61d6ad567988f24e42d (patch) | |
tree | 5dc7ead67990b8770adac05a2d9464064e33e617 /phpBB/adm | |
parent | 0b2979c6bab97297f839937606635fd4cc6b1eae (diff) | |
download | forums-e3866c939d78b925844cd61d6ad567988f24e42d.tar forums-e3866c939d78b925844cd61d6ad567988f24e42d.tar.gz forums-e3866c939d78b925844cd61d6ad567988f24e42d.tar.bz2 forums-e3866c939d78b925844cd61d6ad567988f24e42d.tar.xz forums-e3866c939d78b925844cd61d6ad567988f24e42d.zip |
Feature Bug #43375 - Ability to delete warnings and keep warnings permanently
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9758 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/acp_users.html | 4 | ||||
-rw-r--r-- | phpBB/adm/style/acp_users_warnings.html | 39 |
2 files changed, 43 insertions, 0 deletions
diff --git a/phpBB/adm/style/acp_users.html b/phpBB/adm/style/acp_users.html index 34e4147356..da7d2a495b 100644 --- a/phpBB/adm/style/acp_users.html +++ b/phpBB/adm/style/acp_users.html @@ -83,6 +83,10 @@ <!-- INCLUDE acp_users_feedback.html --> +<!-- ELSEIF S_WARNINGS --> + +<!-- INCLUDE acp_users_warnings.html --> + <!-- ELSEIF S_PROFILE --> <!-- INCLUDE acp_users_profile.html --> diff --git a/phpBB/adm/style/acp_users_warnings.html b/phpBB/adm/style/acp_users_warnings.html new file mode 100644 index 0000000000..be9ef06825 --- /dev/null +++ b/phpBB/adm/style/acp_users_warnings.html @@ -0,0 +1,39 @@ + <form id="list" method="post" action="{U_ACTION}"> + + <!-- IF .warn --> + <table cellspacing="1"> + <thead> + <tr> + <th>{L_REPORT_BY}</th> + <th>{L_TIME}</th> + <th>{L_FEEDBACK}</th> + <!-- IF S_CLEARLOGS --><th>{L_MARK}</th><!-- ENDIF --> + </tr> + </thead> + <tbody> + <!-- BEGIN warn --> + <!-- IF warn.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF --> + + <td>{warn.USERNAME}</td> + <td style="text-align: center; nowrap: nowrap;">{warn.DATE}</td> + <td>{warn.ACTION}</td> + <!-- IF S_CLEARLOGS --><td style="text-align: center;"><input type="checkbox" class="radio" name="mark[]" value="{warn.ID}" /></td><!-- ENDIF --> + </tr> + <!-- END warn --> + </tbody> + </table> + <!-- ELSE --> + <div class="errorbox"> + <p>{L_NO_WARNINGS}</p> + </div> + <!-- ENDIF --> + + <!-- IF S_CLEARLOGS --> + <fieldset class="quick"> + <input class="button2" type="submit" name="delall" value="{L_DELETE_ALL}" /> + <input class="button2" type="submit" name="delmarked" value="{L_DELETE_MARKED}" /> + <p class="small"><a href="#" onclick="marklist('list', 'mark', true);">{L_MARK_ALL}</a> • <a href="#" onclick="marklist('list', 'mark', false);">{L_UNMARK_ALL}</a></p> + </fieldset> + <!-- ENDIF --> + {S_FORM_TOKEN} + </form> |