diff options
author | patdenice <patdenice@piwigo.org> | 2010-03-29 13:30:02 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2010-03-29 13:30:02 +0000 |
commit | 29d36ffdc36bf20ab43840df9272fac160cbc476 (patch) | |
tree | 6df10661fe632fa6a8b78ab32fafba5a76b9851e /admin/themes/default/template/themes_installed.tpl | |
parent | 034e75f8ea2fc21f38a623df2f9a362048b4c2a5 (diff) |
feature 1502: Allow to have configuration page for each theme.css.
About string for theme has to be saved in language theme directory (about.html)
git-svn-id: http://piwigo.org/svn/trunk@5446 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/themes_installed.tpl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/admin/themes/default/template/themes_installed.tpl b/admin/themes/default/template/themes_installed.tpl index 5bb18ae57..9f972486f 100644 --- a/admin/themes/default/template/themes_installed.tpl +++ b/admin/themes/default/template/themes_installed.tpl @@ -13,7 +13,7 @@ <div class="themeName">{$theme.name}{if $theme.is_default} <em>({'default'|@translate})</em>{/if}</div> <div class="themeShot"><img src="{$theme.screenshot}"></div> <div class="themeActions"> - + <div> {if $theme.deactivable} <a href="{$deactivate_baseurl}{$theme.id}" title="{'Forbid this theme to users'|@translate}">{'Deactivate'|@translate}</a> {else} @@ -23,6 +23,10 @@ {if not $theme.is_default} | <a href="{$set_default_baseurl}{$theme.id}" title="{'Set as default theme for unregistered and new users'|@translate}">{'Default'|@translate}</a> {/if} +{if isset($theme.admin_uri)} + <br><a href="{$theme.admin_uri}" title="{'Configuration'|@translate}">{'Configuration'|@translate}</a> +{/if} + </div> </div> <!-- themeActions --> </div> {/foreach} @@ -39,7 +43,7 @@ <div class="themeName">{$theme.name}</div> <div class="themeShot"><img src="{$theme.screenshot}"></div> <div class="themeActions"> - + <div> {if $theme.activable} <a href="{$activate_baseurl}{$theme.id}" title="{'Make this theme available to users'|@translate}">{'Activate'|@translate}</a> {else} @@ -53,7 +57,7 @@ {else} <span title="{$theme.delete_tooltip}">{'Delete'|@translate}</span> {/if} - + </div> </div> </div> |