diff options
Diffstat (limited to 'templates/web')
-rw-r--r-- | templates/web/bromley/admin/category-checkboxes.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/web/bromley/admin/category-checkboxes.html b/templates/web/bromley/admin/category-checkboxes.html new file mode 100644 index 000000000..ce4b489e8 --- /dev/null +++ b/templates/web/bromley/admin/category-checkboxes.html @@ -0,0 +1,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 c.cobrand.add_admin_subcategories # Bromley-specific function %] + <li> + <label title="[% contact.email | html %]"> + <input type="checkbox" name="contacts[[% contact.id %]]" [% 'checked' IF contact.active %]/> + [% contact.category %] + </label> + </li> + [% END %] + </ul> |