diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 10:39:43 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 10:39:43 +0100 |
commit | 46eaa480d1f80b7aa701d756de953050f7885f0c (patch) | |
tree | 3625e7f96a4712b65c8bb008a86087ddf4a99888 /pyload/webui/themes/Dark/tml/folder.html | |
parent | Improve theme structure a bit (diff) | |
download | pyload-46eaa480d1f80b7aa701d756de953050f7885f0c.tar.xz |
Fix filename case
Diffstat (limited to 'pyload/webui/themes/Dark/tml/folder.html')
-rw-r--r-- | pyload/webui/themes/Dark/tml/folder.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pyload/webui/themes/Dark/tml/folder.html b/pyload/webui/themes/Dark/tml/folder.html new file mode 100644 index 000000000..b57338d5e --- /dev/null +++ b/pyload/webui/themes/Dark/tml/folder.html @@ -0,0 +1,15 @@ +<li class="folder"> + <input type="hidden" name="path" class="path" value="{{ path }}" /> + <input type="hidden" name="name" class="name" value="{{ name }}" /> + <span> + <b>{{ name }}</b> + <span class="buttons" style="opacity:0"> + <img title="{{_("Rename Directory")}}" class="rename" style="cursor: pointer" height="12px" src="/Dark/img/default/pencil.png" /> + + <img title="{{_("Delete Directory")}}" class="delete" style="margin-left: -10px; cursor: pointer" width="12px" height="12px" src="/Dark/img/default/delete.png" /> + + <img title="{{_("Add subdirectory")}}" class="mkdir" style="margin-left: -10px; cursor: pointer" width="12px" height="12px" src="/Dark/img/default/add_folder.png" /> + </span> + </span> + <div style="display:none">{{ _("Folder is empty") }}</div> +</li>
\ No newline at end of file |