diff options
Diffstat (limited to 'templates/web/default')
-rw-r--r-- | templates/web/default/auth/general.html | 2 | ||||
-rw-r--r-- | templates/web/default/report/updates.html | 11 |
2 files changed, 10 insertions, 3 deletions
diff --git a/templates/web/default/auth/general.html b/templates/web/default/auth/general.html index 3d80a1049..32ea03177 100644 --- a/templates/web/default/auth/general.html +++ b/templates/web/default/auth/general.html @@ -10,7 +10,7 @@ # other keys include fqdn, mxcheck if you'd like to write a custom error message errors = { - missing => loc('Please enter an email address'), + missing => loc('Please enter your email'), other => loc('Please check your email address is correct') }; diff --git a/templates/web/default/report/updates.html b/templates/web/default/report/updates.html index b7f44c5ae..910430114 100644 --- a/templates/web/default/report/updates.html +++ b/templates/web/default/report/updates.html @@ -9,12 +9,19 @@ [%- ELSE %] [% tprintf( loc( 'Posted by %s at %s' ), update.name, prettify_epoch( update.confirmed_local.epoch ) ) | html -%] [%- END -%] - [%- # extra cobrand meta data -%] + [%- c.cobrand.extra_update_meta_text(update) -%] [%- ", " _ loc( 'marked as fixed' ) IF update.mark_fixed %] [%- ", " _ loc( 'reopened' ) IF update.mark_open %] </em></p> + + [% IF c.cobrand.allow_update_reporting %] + <p> + <a rel="nofollow" class="unsuitable-problem" href="[% c.uri_for( '/contact?id=' _ update.problem_id _ ';update_id' _ update.id ) %]">[% loc('Offensive? Unsuitable? Tell us') %]</a> + </p> + [% END %] + </div> - [%# update reporting %] + <div class="update-text"> [% add_links( update.text ) | html_para %] |