aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/admin/tags.tpl
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2006-06-18 12:04:59 +0000
committernikrou <nikrou@piwigo.org>2006-06-18 12:04:59 +0000
commit57cf3ba758cadf56e35aa030edf525e61a56cfc6 (patch)
treee5d0e5709285107f49130233e6f73874bd71f99e /template/yoga/admin/tags.tpl
parent7457a64443e25650728bcbe47f4649e21c04f4e6 (diff)
Issue 426: first step; separation of admin and public into two templates
Need to simplify and delete files not needed git-svn-id: http://piwigo.org/svn/trunk@1363 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/tags.tpl')
-rw-r--r--template/yoga/admin/tags.tpl53
1 files changed, 0 insertions, 53 deletions
diff --git a/template/yoga/admin/tags.tpl b/template/yoga/admin/tags.tpl
deleted file mode 100644
index 8fe666b59..000000000
--- a/template/yoga/admin/tags.tpl
+++ /dev/null
@@ -1,53 +0,0 @@
-<div class="titrePage">
- <h2>{lang:Manage tags}</h2>
-</div>
-
-<form action="{F_ACTION}" method="post">
-
- <!-- BEGIN edit_tags -->
- <fieldset>
- <legend>{lang:Edit tags}</legend>
- <input type="hidden" name="edit_list" value="{edit_tags.LIST}" />
- <table class="table2">
- <tr class="throw">
- <th>{lang:Current name}</th>
- <th>{lang:New name}</th>
- </tr>
- <!-- BEGIN tag -->
- <tr>
- <td>{edit_tags.tag.NAME}</td>
- <td><input type="text" name="tag_name-{edit_tags.tag.ID}" value="{edit_tags.tag.NAME}" /></td>
- </tr>
- <!-- END tag -->
- </table>
-
- <p>
- <input type="submit" name="submit" value="{lang:Submit}" {TAG_INPUT_ENABLED} />
- <input type="reset" value="{lang:Reset}" />
- </p>
- </fieldset>
- <!-- END edit_tags -->
-
- <fieldset>
- <legend>{lang:Add a tag}</legend>
-
- <label>
- {lang:New tag}
- <input type="text" name="add_tag" />
- </label>
-
- <p><input type="submit" name="add" value="{lang:Submit}" {TAG_INPUT_ENABLED}/></p>
- </fieldset>
-
- <fieldset>
- <legend>{lang:Tag selection}</legend>
-
- {TAG_SELECTION}
-
- <p>
- <input type="submit" name="edit" value="{lang:Edit selected tags}" {TAG_INPUT_ENABLED}/>
- <input type="submit" name="delete" value="{lang:Delete selected tags}" onclick="return confirm('{lang:Are you sure?}');" {TAG_INPUT_ENABLED}/>
- </p>
- </fieldset>
-
-</form>