diff options
-rw-r--r-- | templates/web/base/report/new/category.html | 3 | ||||
-rw-r--r-- | templates/web/base/report/new/category_wrapper.html | 2 | ||||
-rw-r--r-- | templates/web/base/report/new/form_report.html | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/templates/web/base/report/new/category.html b/templates/web/base/report/new/category.html index 961954f33..b5bfd0251 100644 --- a/templates/web/base/report/new/category.html +++ b/templates/web/base/report/new/category.html @@ -1,3 +1,4 @@ +[% TRY %][% PROCESS 'report/new/_form_labels.html' %][% CATCH file %][% END ~%] [% # If only one option, pre-select that as if it were already selected. This # carries through to the category_extras template because this template is @@ -19,7 +20,7 @@ END category_lc = category | lower; END; ~%] <label for='form_category' id="form_category_label"> - [%~ loc('Category') ~%] + [%~ form_category_label OR loc('Category') ~%] </label>[% =%] <select required class="validCategory form-control[% IF category_groups.size %] js-grouped-select[% END %]" name="category" id="form_category" [%~ IF c.user.from_body =%] diff --git a/templates/web/base/report/new/category_wrapper.html b/templates/web/base/report/new/category_wrapper.html index 15616221c..a5e0e3556 100644 --- a/templates/web/base/report/new/category_wrapper.html +++ b/templates/web/base/report/new/category_wrapper.html @@ -1,6 +1,6 @@ <div id="form_category_row"> [% IF js %] - <label for="form_category">[% loc('Category') %]</label> + <label for="form_category">[% form_category_label OR loc('Category') %]</label> <select class="validCategory form-control" name="category" id="form_category" [%~ IF c.user.from_body =%] [%~ prefill_report = c.cobrand.prefill_report_fields_for_inspector || c.user.has_body_permission_to('report_prefill') %] diff --git a/templates/web/base/report/new/form_report.html b/templates/web/base/report/new/form_report.html index d6112703c..3b28d4aa7 100644 --- a/templates/web/base/report/new/form_report.html +++ b/templates/web/base/report/new/form_report.html @@ -1,4 +1,5 @@ [% SET form_show_category_only = NOT category || field_errors.category || disable_form_message || have_disable_qn_to_answer %] +[% TRY %][% PROCESS 'report/new/_form_labels.html' %][% CATCH file %][% END %] <!-- report/new/form_report.html --> [% INCLUDE 'report/new/form_after_heading.html' %] @@ -25,7 +26,6 @@ [% END %] <div class="js-hide-if-invalid-category[% ' hidden-nojs' IF form_show_category_only %]"> -[% TRY %][% PROCESS 'report/new/_form_labels.html' %][% CATCH file %][% END %] [% UNLESS public_councils_text_at_top %] [% INCLUDE public_councils_text %] |