aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/admin/tags.tpl
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2008-08-12 20:43:56 +0000
committervdigital <vdigital@piwigo.org>2008-08-12 20:43:56 +0000
commit8ab0da7da22a84b735aff05f40ac57f347a739bd (patch)
tree81a6f643da62c108e7b8d87849d93b812e46f744 /template/yoga/admin/tags.tpl
parent5d407384638b33be92cf77c01a82842cf205520c (diff)
Admin advices can be easily extended to new advices.
Admin advices plugin can be translated like any other plugins. Admin advices plugin has been extended with External summary (a technical and non translated part). Some template cleaning. git-svn-id: http://piwigo.org/svn/trunk@2472 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/tags.tpl')
-rw-r--r--template/yoga/admin/tags.tpl54
1 files changed, 0 insertions, 54 deletions
diff --git a/template/yoga/admin/tags.tpl b/template/yoga/admin/tags.tpl
deleted file mode 100644
index b2ce57341..000000000
--- a/template/yoga/admin/tags.tpl
+++ /dev/null
@@ -1,54 +0,0 @@
-{* $Id$ *}
-<div class="titrePage">
- <h2>{'Manage tags'|@translate}</h2>
-</div>
-
-<form action="{$F_ACTION}" method="post">
-
- {if isset($EDIT_TAGS_LIST)}
- <fieldset>
- <legend>{'Edit tags'|@translate}</legend>
- <input type="hidden" name="edit_list" value="{$EDIT_TAGS_LIST}" />
- <table class="table2">
- <tr class="throw">
- <th>{'Current name'|@translate}</th>
- <th>{'New name'|@translate}</th>
- </tr>
- {foreach from=$tags item=tag}
- <tr>
- <td>{$tag.NAME}</td>
- <td><input type="text" name="tag_name-{$tag.ID}" value="{$tag.NAME}" /></td>
- </tr>
- {/foreach}
- </table>
-
- <p>
- <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED} />
- <input class="submit" type="reset" value="{'Reset'|@translate}" />
- </p>
- </fieldset>
- {/if}
-
- <fieldset>
- <legend>{'Add a tag'|@translate}</legend>
-
- <label>
- {'New tag'|@translate}
- <input type="text" name="add_tag" />
- </label>
-
- <p><input class="submit" type="submit" name="add" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}/></p>
- </fieldset>
-
- <fieldset>
- <legend>{'Tag selection'|@translate}</legend>
-
- {$TAG_SELECTION}
-
- <p>
- <input class="submit" type="submit" name="edit" value="{'Edit selected tags'|@translate}"/>
- <input class="submit" type="submit" name="delete" value="{'Delete selected tags'|@translate}" onclick="return confirm('{'Are you sure?'|@translate}');" {$TAG_INPUT_ENABLED}/>
- </p>
- </fieldset>
-
-</form>