aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xphpBB/templates/PSO/admin/words_edit_body.tpl24
-rwxr-xr-xphpBB/templates/PSO/admin/words_list_body.tpl28
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>