diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-03-30 16:38:37 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-03-30 16:38:37 +0100 |
commit | 9b9ba2a20409486e6645e0429220447f84199cc7 (patch) | |
tree | 0848626e95da6cb850819ded944ef1220f76f42e /module/web/templates | |
parent | plugin chooser for settings (diff) | |
download | pyload-9b9ba2a20409486e6645e0429220447f84199cc7.tar.xz |
show active addons
Diffstat (limited to 'module/web/templates')
-rw-r--r-- | module/web/templates/default/settings.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/module/web/templates/default/settings.html b/module/web/templates/default/settings.html index bee583dbf..d8e3430f5 100644 --- a/module/web/templates/default/settings.html +++ b/module/web/templates/default/settings.html @@ -23,10 +23,14 @@ <li class="divider"></li>
<li class="nav-header"><i class="icon-th-large icon-white"></i> {{ _("Addons") }}</li>
<%= each plugin %>
- <li data-name="<% name %>"><a href="#"><% label %></a></li>
+ <li class="plugin" data-name="<% name %>">
+ <a href="#" style="background-image: url(icons/<% name %>);">
+ <% label %>
+ <i class="iconf-remove pull-right"></i>
+ </a></li>
<%/each%>
-{# <li class="divider"></li>#}
-{# <li class="nav-header"><i class="icon-th-list icon-white"></i> {{ _("Other") }}</li>#}
+ {# <li class="divider"></li>#}
+ {# <li class="nav-header"><i class="icon-th-list icon-white"></i> {{ _("Other") }}</li>#}
</script>
<script type="text/template" id="template-config">
<legend>
|