diff options
Diffstat (limited to 'templates/web/base')
-rw-r--r-- | templates/web/base/questionnaire/index.html | 4 | ||||
-rw-r--r-- | templates/web/base/report/new/after_photo.html | 10 | ||||
-rw-r--r-- | templates/web/base/report/new/form_report.html | 6 | ||||
-rw-r--r-- | templates/web/base/report/update/form_update.html | 4 |
4 files changed, 20 insertions, 4 deletions
diff --git a/templates/web/base/questionnaire/index.html b/templates/web/base/questionnaire/index.html index b4595bbcd..52d5ed5b1 100644 --- a/templates/web/base/questionnaire/index.html +++ b/templates/web/base/questionnaire/index.html @@ -74,7 +74,9 @@ [% IF c.cobrand.allow_photo_upload %] <input type="hidden" name="upload_fileid" value="[% upload_fileid %]"> - <label for="form_photo">[% loc('Photo') %]</label> + <label for="form_photo"> + <span data-singular="[% loc('Photo') %]" data-plural="[% loc('Photos') %]">[% loc('Photo') %]</span> + </label> [% IF field_errors.photo %] <p class='form-error'>[% field_errors.photo %]</p> diff --git a/templates/web/base/report/new/after_photo.html b/templates/web/base/report/new/after_photo.html new file mode 100644 index 000000000..3fed031a8 --- /dev/null +++ b/templates/web/base/report/new/after_photo.html @@ -0,0 +1,10 @@ +<div class="description_tips"> + <h4>[% loc('Tips for perfect photos') %]</h4> + <ul class="do"> + <li>[% loc('Show what the problem is') %]</li> + <li>[% loc('Show where it’s located') %]</li> + </ul> + <ul class="dont"> + <li>[% loc('Avoid personal information and vehicle number plates') %]</li> + </ul> +</div> diff --git a/templates/web/base/report/new/form_report.html b/templates/web/base/report/new/form_report.html index bbb57ef4e..d9320d166 100644 --- a/templates/web/base/report/new/form_report.html +++ b/templates/web/base/report/new/form_report.html @@ -20,8 +20,10 @@ [% IF c.cobrand.allow_photo_upload %] <input type="hidden" name="upload_fileid" value="[% upload_fileid %]"> - <label for="form_photo">[% loc('Photo') %] - [% INCLUDE 'report/public_label.html' %]</label> + <label for="form_photo"> + <span data-singular="[% loc('Photo') %]" data-plural="[% loc('Photos') %]">[% loc('Photo') %]</span> + [% INCLUDE 'report/public_label.html' %] + </label> [% IF field_errors.photo %] <p class='form-error'>[% field_errors.photo %]</p> diff --git a/templates/web/base/report/update/form_update.html b/templates/web/base/report/update/form_update.html index ef87d9de0..55125ba4b 100644 --- a/templates/web/base/report/update/form_update.html +++ b/templates/web/base/report/update/form_update.html @@ -3,7 +3,9 @@ [% IF c.cobrand.allow_photo_upload %] <input type="hidden" name="upload_fileid" value="[% upload_fileid %]"> - <label for="form_photo">[% loc('Photo') %]</label> + <label for="form_photo"> + <span data-singular="[% loc('Photo') %]" data-plural="[% loc('Photos') %]">[% loc('Photo') %]</span> + </label> [% IF field_errors.photo %] <p class='form-error'>[% field_errors.photo %]</p> |