diff options
author | David Lawrence <dkl@mozilla.com> | 2015-10-21 05:00:37 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-10-21 05:00:37 +0200 |
commit | c8cf2b58bae632b6801337971323d37cf9f5a0f0 (patch) | |
tree | 9825f8b4c9ace9343678595c3a6cbe14ce9bb6e9 /template/en/default/admin/settings | |
parent | d1b6f1d78bdcde363cbcc80c4e589742819a4e24 (diff) | |
download | bugzilla-c8cf2b58bae632b6801337971323d37cf9f5a0f0.tar.gz bugzilla-c8cf2b58bae632b6801337971323d37cf9f5a0f0.tar.xz |
Bug 1209599 - group general preferences by category
Diffstat (limited to 'template/en/default/admin/settings')
-rw-r--r-- | template/en/default/admin/settings/edit.html.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/template/en/default/admin/settings/edit.html.tmpl b/template/en/default/admin/settings/edit.html.tmpl index 7f95f883e..eeb6c3203 100644 --- a/template/en/default/admin/settings/edit.html.tmpl +++ b/template/en/default/admin/settings/edit.html.tmpl @@ -51,6 +51,7 @@ page, and the Default Value will automatically apply to everyone. <table border="1" cellpadding="4"> <tr> <th>Preference Text</th> + <th>Category</th> <th>Default Value</th> <th>Enabled</th> </tr> @@ -61,6 +62,9 @@ page, and the Default Value will automatically apply to everyone. <td align="right"> [% setting_descs.$name OR name FILTER html %] </td> + <td align="left"> + [% settings.$name.category FILTER html %] + </td> <td> <select name="[% name FILTER html %]" id="[% name FILTER html %]"> [% FOREACH x = settings.${name}.legal_values %] |