diff options
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/themes_installed.tpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/admin/themes/default/template/themes_installed.tpl b/admin/themes/default/template/themes_installed.tpl index 0a5a0cc85..4b050c51c 100644 --- a/admin/themes/default/template/themes_installed.tpl +++ b/admin/themes/default/template/themes_installed.tpl @@ -33,13 +33,21 @@ <div class="themeName">{$theme.name}</div> <div class="themeShot"><img src="{$theme.screenshot}"></div> <div class="themeActions"> + + {if $theme.activable} <a href="{$activate_baseurl}{$theme.id}" title="{'Make this theme available to users'|@translate}">{'Activate'|@translate}</a> + {else} + <span title="{$theme.activate_tooltip}">{'Activate'|@translate}</span> + {/if} + | + {if $theme.deletable} <a href="{$delete_baseurl}{$theme.id}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');" title="{'Delete this theme'|@translate}">{'Delete'|@translate}</a> {else} <span title="{$theme.delete_tooltip}">{'Delete'|@translate}</span> {/if} + </div> </div> |