aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/base/admin/category-checkboxes.html
blob: 63acd41120f3981eb52f0811dc8bf8647892a407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <p>
    <strong>[% loc('Categories:') %]</strong>
  </p>
  <ul>
    <li>
      [% loc('Select:') %]
      <a href="#" data-select-all>[% loc('all') %]</a> /
      <a href="#" data-select-none>[% loc('none') %]</a>
    </li>
    [% FOR contact IN contacts %]
      <li>
        <label>
          <input type="checkbox" name="contacts[[% contact.id %]]" [% 'checked' IF contact.active %]/>
          [% contact.category %]
        </label>
      </li>
    [% END %]
  </ul>