diff options
author | M Somerville <matthew-github@dracos.co.uk> | 2020-08-17 12:54:48 +0100 |
---|---|---|
committer | M Somerville <matthew-github@dracos.co.uk> | 2020-08-17 13:14:10 +0100 |
commit | 65b65bdaef720d2c34aa0377a6e8befd64cdc7e0 (patch) | |
tree | 6bbde842e0449dc62ad9a1dc07df504ea03233b2 | |
parent | f28ae32f1591ca3bb01feb1be28737b9a416c0a9 (diff) |
[Bromley] Refactor template to more match base.
-rw-r--r-- | templates/web/bromley/admin/category-checkboxes.html | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/templates/web/bromley/admin/category-checkboxes.html b/templates/web/bromley/admin/category-checkboxes.html index 756f2d1ff..68e8e0c26 100644 --- a/templates/web/bromley/admin/category-checkboxes.html +++ b/templates/web/bromley/admin/category-checkboxes.html @@ -1,12 +1,4 @@ -<fieldset> - <legend> - [% IF hint %] - <div class="admin-hint"> - <p>[% hint %]</p> - </div> - [% END %] - [% loc('Categories:') %] - </legend> +[% BLOCK checkboxes %] <ul class="no-bullets no-margin"> <li> [% loc('Select:') %] @@ -22,4 +14,16 @@ </li> [% END %] </ul> +[% END %] +<fieldset> + <legend> + [% IF hint %] + <div class="admin-hint"> + <p>[% hint %]</p> + </div> + [% END %] + [% loc('Categories:') %] + </legend> + + [% INCLUDE checkboxes %] </fieldset> |