aboutsummaryrefslogtreecommitdiffstats
path: root/templates/gitrefinery/categorychecklist.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/gitrefinery/categorychecklist.html')
-rw-r--r--templates/gitrefinery/categorychecklist.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/gitrefinery/categorychecklist.html b/templates/gitrefinery/categorychecklist.html
new file mode 100644
index 0000000..f2aff61
--- /dev/null
+++ b/templates/gitrefinery/categorychecklist.html
@@ -0,0 +1,21 @@
+{% comment %}
+
+ git-refinery-web - category check list AJAX template
+
+ Copyright (C) 2018 Intel Corporation
+ Licensed under the MIT license, see COPYING.MIT for details
+
+{% endcomment %}
+
+{% autoescape on %}
+ <table><tbody>
+ {% for category in categories %}
+ <tr>
+ <td class="checkboxtd">
+ <input type="checkbox" class="filtercategorycheckbox" value="{{ category.id }}" id="id_categorycheckbox_{{category.id}}" />
+ </td>
+ <td><label for="id_categorycheckbox_{{category.id}}">{{ category.name }}</label></td>
+ </tr>
+ {% endfor %}
+ </tbody></table>
+{% endautoescape %}