aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/themes_installed.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'admin/themes/default/template/themes_installed.tpl')
-rw-r--r--admin/themes/default/template/themes_installed.tpl15
1 files changed, 12 insertions, 3 deletions
diff --git a/admin/themes/default/template/themes_installed.tpl b/admin/themes/default/template/themes_installed.tpl
index a231f39ff..0a5a0cc85 100644
--- a/admin/themes/default/template/themes_installed.tpl
+++ b/admin/themes/default/template/themes_installed.tpl
@@ -4,7 +4,8 @@
<div id="themesContent">
-<h3>Active Themes</h3>
+<fieldset>
+<legend>Active Themes</legend>
{if isset($active_themes)}
<div class="themeBoxes">
{foreach from=$active_themes item=theme}
@@ -21,9 +22,11 @@
{/foreach}
</div> <!-- themeBoxes -->
{/if}
+</fieldset>
{if isset($inactive_themes)}
-<h3>Inactive Themes</h3>
+<fieldset>
+<legend>Inactive Themes</legend>
<div class="themeBoxes">
{foreach from=$inactive_themes item=theme}
<div class="themeBox">
@@ -31,12 +34,18 @@
<div class="themeShot"><img src="{$theme.screenshot}"></div>
<div class="themeActions">
<a href="{$activate_baseurl}{$theme.id}" title="{'Make this theme available to users'|@translate}">{'Activate'|@translate}</a>
- | <a href="{$delete_baseurl}{$theme.id}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');" title="{'Delete this theme'|@translate}">{'Delete'|@translate}</a>
+ |
+ {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>
{/foreach}
</div> <!-- themeBoxes -->
+</fieldset>
{/if}
</div> <!-- themesContent --> \ No newline at end of file