diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-09-02 10:08:04 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-09-02 10:08:04 +0000 |
commit | 92bb3a8905a9b23a36e035cc8810393ae083a22a (patch) | |
tree | 8988b77e02f999b5e79b27e7f44ef892a8a1f67c /phpBB/templates | |
parent | fc07e5b3aaf17a58172c787bbc7868b45ed6ac1c (diff) | |
download | forums-92bb3a8905a9b23a36e035cc8810393ae083a22a.tar forums-92bb3a8905a9b23a36e035cc8810393ae083a22a.tar.gz forums-92bb3a8905a9b23a36e035cc8810393ae083a22a.tar.bz2 forums-92bb3a8905a9b23a36e035cc8810393ae083a22a.tar.xz forums-92bb3a8905a9b23a36e035cc8810393ae083a22a.zip |
Templates for word censor
git-svn-id: file:///svn/phpbb/trunk@966 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates')
-rwxr-xr-x | phpBB/templates/PSO/admin/words_edit_body.tpl | 24 | ||||
-rwxr-xr-x | phpBB/templates/PSO/admin/words_list_body.tpl | 28 |
2 files changed, 52 insertions, 0 deletions
diff --git a/phpBB/templates/PSO/admin/words_edit_body.tpl b/phpBB/templates/PSO/admin/words_edit_body.tpl new file mode 100755 index 0000000000..0b6635889a --- /dev/null +++ b/phpBB/templates/PSO/admin/words_edit_body.tpl @@ -0,0 +1,24 @@ + +<br clear="all" /> + +<h1>{L_WORDS_TITLE}</h1> + +<p>{L_WORDS_TEXT}</p> + +<form method="post" action="{S_WORD_ACTION}"> +<table cellspacing="1" cellpadding="4" border="0" align="center"> + <tr> + <th colspan="2">{L_WORD_CENSOR}</th> + </tr> + <tr> + <td class="row2">{L_WORD}</td> + <td class="row2"><input type="text" name="word" value="{WORD}" /></td> + </tr> + <tr> + <td class="row1">{L_REPLACEMENT}</td> + <td class="row1"><input type="text" name="replacement" value="{REPLACEMENT}" /></td> + </tr> + <tr> + <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="save" value="{L_SUBMIT}" /></td> + </tr> +</table></form> diff --git a/phpBB/templates/PSO/admin/words_list_body.tpl b/phpBB/templates/PSO/admin/words_list_body.tpl new file mode 100755 index 0000000000..903e43911f --- /dev/null +++ b/phpBB/templates/PSO/admin/words_list_body.tpl @@ -0,0 +1,28 @@ + +<br clear="all" /> + +<h1>{L_WORDS_TITLE}</h1> + +<P>{L_WORDS_TEXT}</p> + +<p>{OPT_MESSAGE}</p> + +<form method="POST" action="{S_WORDS_ACTION}"> +<table cellspacing="1" cellpadding="4" border="0" align="center"> + <tr> + <th>{L_WORD}</th> + <th>{L_REPLACEMENT}</th> + <th colspan="2">{L_ACTION}</th> + </tr> + <!-- BEGIN words --> + <tr> + <td class="row2" align="center">{words.WORD}</td> + <td class="row2" align="center">{words.REPLACEMENT}</td> + <td class="row2"><a href="{words.U_WORD_EDIT}">{L_EDIT}</a></td> + <td class="row2"><a href="{words.U_WORD_DELETE}">{L_DELETE}</a></td> + </tr> + <!-- END words --> + <tr> + <td class="cat" colspan="5" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="add" value="{L_WORD_ADD}" /></td> + </tr> +</table></form> |