diff options
| author | James Atkinson <thefinn@users.sourceforge.net> | 2001-10-25 08:53:18 +0000 |
|---|---|---|
| committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-10-25 08:53:18 +0000 |
| commit | fb8511df75a824c211a697b7352e143b785865ee (patch) | |
| tree | 0f6c7e55c9059bd2eef8913b533212a6b97f0dbb /phpBB/templates/subSilver | |
| parent | a719de20ea0c4673c4a534649eaf26cf7b367f61 (diff) | |
| download | forums-fb8511df75a824c211a697b7352e143b785865ee.tar forums-fb8511df75a824c211a697b7352e143b785865ee.tar.gz forums-fb8511df75a824c211a697b7352e143b785865ee.tar.bz2 forums-fb8511df75a824c211a697b7352e143b785865ee.tar.xz forums-fb8511df75a824c211a697b7352e143b785865ee.zip | |
A little over half done the styles admin
Can do: Add new themes from cfg file, export theme data to cfg file, remove themes
Cannot do: Created or edit themes
git-svn-id: file:///svn/phpbb/trunk@1244 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates/subSilver')
| -rwxr-xr-x | phpBB/templates/subSilver/admin/styles_addnew_body.tpl | 19 | ||||
| -rwxr-xr-x | phpBB/templates/subSilver/admin/styles_exporter.tpl | 14 | ||||
| -rwxr-xr-x | phpBB/templates/subSilver/admin/styles_list_body.tpl | 21 |
3 files changed, 54 insertions, 0 deletions
diff --git a/phpBB/templates/subSilver/admin/styles_addnew_body.tpl b/phpBB/templates/subSilver/admin/styles_addnew_body.tpl new file mode 100755 index 0000000000..6240a7986c --- /dev/null +++ b/phpBB/templates/subSilver/admin/styles_addnew_body.tpl @@ -0,0 +1,19 @@ + +<h1>{L_STYLES_TITLE}</h1> + +<P>{L_STYLES_ADD_TEXT}</p> + +<table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline"> + <tr> + <th class="thCornerL">{L_STYLE}</th> + <th class="thTop">{L_TEMPLATE}</th> + <th class="thCornerR">{L_ACTION}</th> + </tr> + <!-- BEGIN styles --> + <tr> + <td class="{styles.ROW_CLASS}">{styles.STYLE_NAME}</td> + <td class="{styles.ROW_CLASS}">{styles.TEMPLATE_NAME}</td> + <td class="{styles.ROW_CLASS}"><a href="{styles.U_STYLES_INSTALL}">{L_INSTALL}</a></td> + </tr> + <!-- END styles --> +</table></form> diff --git a/phpBB/templates/subSilver/admin/styles_exporter.tpl b/phpBB/templates/subSilver/admin/styles_exporter.tpl new file mode 100755 index 0000000000..2056260b7e --- /dev/null +++ b/phpBB/templates/subSilver/admin/styles_exporter.tpl @@ -0,0 +1,14 @@ + +<h1>{L_STYLE_EXPORTER}</h1> + +<p>{L_EXPORTER_EXPLAIN}</p> + +<form method="post" action="{S_EXPORTER_ACTION}"><table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline"> + <tr> + + <th class="thHead" align="center">{L_TEMPLATE_SELECT}</th> + </tr> + <tr> + <td class="row1" align="center">{S_TEMPLATE_SELECT} <input type="submit" name="edit" value="{L_SUBMIT}" class="mainoption" /> </td> + </tr> +</table></form> diff --git a/phpBB/templates/subSilver/admin/styles_list_body.tpl b/phpBB/templates/subSilver/admin/styles_list_body.tpl new file mode 100755 index 0000000000..915fe49312 --- /dev/null +++ b/phpBB/templates/subSilver/admin/styles_list_body.tpl @@ -0,0 +1,21 @@ + +<h1>{L_STYLES_TITLE}</h1> + +<P>{L_STYLES_TEXT}</p> + +<table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline"> + <tr> + <th class="thCornerL">{L_STYLE}</th> + <th class="thTop">{L_TEMPLATE}</th> + <th class="thTop">{L_EDIT}</th> + <th colspan="2" class="thCornerR">{L_DELETE}</th> + </tr> + <!-- BEGIN styles --> + <tr> + <td class="{styles.ROW_CLASS}">{styles.STYLE_NAME}</td> + <td class="{styles.ROW_CLASS}">{styles.TEMPLATE_NAME}</td> + <td class="{styles.ROW_CLASS}"><a href="{styles.U_STYLES_EDIT}">{L_EDIT}</a></td> + <td class="{styles.ROW_CLASS}"><a href="{styles.U_STYLES_DELETE}">{L_DELETE}</a></td> + </tr> + <!-- END styles --> +</table></form> |
