diff options
Diffstat (limited to 'pyload/webui/themes/Default/tml/filemanager.html')
-rw-r--r-- | pyload/webui/themes/Default/tml/filemanager.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pyload/webui/themes/Default/tml/filemanager.html b/pyload/webui/themes/Default/tml/filemanager.html index c2ac5df9d..102d53e7c 100644 --- a/pyload/webui/themes/Default/tml/filemanager.html +++ b/pyload/webui/themes/Default/tml/filemanager.html @@ -1,4 +1,4 @@ -{% extends '/Default/tml/base.html' %} +{% extends '/tml/base.html' %} {% block head %} @@ -24,9 +24,9 @@ document.addEvent("domready", function(){ <span> <b>{{ file.name }}</b> <span class="buttons" style="opacity:0"> - <img title="{{_("Rename Directory")}}" class="rename" style="cursor: pointer" height="12px" src="/Default/img/pencil.png" /> + <img title="{{_("Rename Directory")}}" class="rename" style="cursor: pointer" height="12px" src="/img/pencil.png" /> - <img title="{{_("Delete Directory")}}" class="delete" style="margin-left: -10px; cursor: pointer" width="12px" height="12px" src="/Default/img/delete.png" /> + <img title="{{_("Delete Directory")}}" class="delete" style="margin-left: -10px; cursor: pointer" width="12px" height="12px" src="/img/delete.png" /> </span> </span> </li> @@ -39,11 +39,11 @@ document.addEvent("domready", function(){ <span> <b>{{ fld.name }}</b> <span class="buttons" style="opacity:0"> - <img title="{{_("Rename Directory")}}" class="rename" style="cursor: pointer" height="12px" src="/Default/img/pencil.png" /> + <img title="{{_("Rename Directory")}}" class="rename" style="cursor: pointer" height="12px" src="/img/pencil.png" /> - <img title="{{_("Delete Directory")}}" class="delete" style="margin-left: -10px; cursor: pointer" width="12px" height="12px" src="/Default/img/delete.png" /> + <img title="{{_("Delete Directory")}}" class="delete" style="margin-left: -10px; cursor: pointer" width="12px" height="12px" src="/img/delete.png" /> - <img title="{{_("Add subdirectory")}}" class="mkdir" style="margin-left: -10px; cursor: pointer" width="12px" height="12px" src="/Default/img/add_folder.png" /> + <img title="{{_("Add subdirectory")}}" class="mkdir" style="margin-left: -10px; cursor: pointer" width="12px" height="12px" src="/img/add_folder.png" /> </span> </span> {% if (fld.folders|length + fld.files|length) > 0 %} |