diff options
author | plegall <plg@piwigo.org> | 2011-01-19 13:19:16 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-01-19 13:19:16 +0000 |
commit | 1b7781c8669ac98d656b57f4b540ef0fa818a94a (patch) | |
tree | 47a7db98b607a4ee477b77df56e8d54576a8566a /admin/themes/default/template/admin.tpl | |
parent | e338363331de40ce04b70d7936cb901f52f88fe0 (diff) |
feature 1289 added: easy "delete orphan tags" function. On the "tags"
administration page, a warning message is displayed if you have at least
one orphan tag + direct action to delete them.
git-svn-id: http://piwigo.org/svn/trunk@8762 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/admin.tpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/admin/themes/default/template/admin.tpl b/admin/themes/default/template/admin.tpl index 9528bee79..4ff019b26 100644 --- a/admin/themes/default/template/admin.tpl +++ b/admin/themes/default/template/admin.tpl @@ -126,5 +126,15 @@ jQuery(document).ready(function(){ldelim} </div> {/if} + {if isset($warnings)} + <div class="warnings"> + <ul> + {foreach from=$warnings item=warning} + <li>{$warning}</li> + {/foreach} + </ul> + </div> + {/if} + {$ADMIN_CONTENT} </div> |