aboutsummaryrefslogtreecommitdiffstats
path: root/templates/gitrefinery/categorychecklist.html
blob: f2aff61b32abcf7edc0fe34c154ac9620e43bdf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 %}