]> git.plutz.net Git - serve0/blobdiff - templates/tagger.html.sh
merged filter and list page
[serve0] / templates / tagger.html.sh
diff --git a/templates/tagger.html.sh b/templates/tagger.html.sh
new file mode 100755 (executable)
index 0000000..10e657c
--- /dev/null
@@ -0,0 +1,46 @@
+# Copyright 2014, 2015 Paul Hänsch
+#
+# This file is part of Serve0
+# 
+# Serve0 is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+# 
+# Serve0 is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+# 
+# You should have received a copy of the GNU Affero General Public License
+# along with Serve0  If not, see <http://www.gnu.org/licenses/>. 
+
+cat <<EOF
+  <div class="panel footer" id="tagger">
+    <a class="panel tagger hide" href="#foot">Hide</a>
+    <hr>
+    <p class="help">Add selectetd tags to selected videos.</p>
+    <p class="newtag">
+      <label class="category">None:</label>
+      <select name="ctag" size="12" multiple id="${n}_none">
+       $(echo "$taglist" |sed -rn 's;^([^:]+)$;<option value="\1">\1</option>;p')
+      </select>
+    </p>
+    $(echo "$taglist" |sed -rn 's;^([^:]+):.*$;\1;p' |sort -u |while read cat; do echo "
+    <p class=\"newtag\">
+      <label class=\"category\">${cat}:</label>
+      <input type=\"hidden\" name=\"category\" value=\"$cat\">
+      <select name=\"ctag\" size=\"12\" multiple id=\"${n}_$cat\">
+       $(echo "$taglist" |sed -rn "s;^${cat}:(.*)$;<option value=\"${cat}:\\1\">\\1</option>;p")
+      </select>
+    </p>"
+    done)
+    <p class="newtag additional">
+      <label class="additional">Additional Tags (one per line):</label>
+      <textarea name="tags" rows="2"></textarea>
+    </p>
+    <input type="submit" value="Add Tags!">
+  </div>
+EOF
+
+# vi:set filetype=html: