diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-10-04 17:21:52 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-10-04 17:21:52 +0200 |
commit | 12bb1970280914309ffca8ca796fcac80663c4cf (patch) | |
tree | e5f2dd351f2e31c0a68da3973ce39d62a913d856 /core/templates | |
parent | de175a4b0f0971c9cbbf912bbc3fd8cbc190b53d (diff) | |
download | nextcloud-server-12bb1970280914309ffca8ca796fcac80663c4cf.tar.gz nextcloud-server-12bb1970280914309ffca8ca796fcac80663c4cf.zip |
JS version of the OCP\ITags interface
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/tags.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/templates/tags.html b/core/templates/tags.html new file mode 100644 index 00000000000..ae3d072b381 --- /dev/null +++ b/core/templates/tags.html @@ -0,0 +1,14 @@ +<div id="tagsdialog"> + <div class="content"> + <div class="scrollarea"> + <ul class="taglist"> + <li><input type="checkbox" name="ids[]" id="tag_{id}" value="{name}" /> + <label for="tag_{id}">{name}</label> + </li> + </ul> + </div> + <div class="bottombuttons"> + <input type="text" class="addinput" name="tag" placeholder="{addText}" /> + </div> + </div> +</div> |