diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-06-09 14:43:30 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-06-09 17:00:42 +0100 |
commit | d56c3d7396ddd71b5cbf8e69d8cb0c3d7c400466 (patch) | |
tree | 105c065a21eae04d90546918a53b98b88f1f1983 | |
parent | abc63a85b47bbc6b9e81c8256a226864ac7fe0ce (diff) |
Use problem name in reporting to match display.
-rw-r--r-- | templates/web/base/contact/index.html | 2 | ||||
-rw-r--r-- | templates/web/bathnes/contact/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/base/contact/index.html b/templates/web/base/contact/index.html index 05a24160f..4e65ce674 100644 --- a/templates/web/base/contact/index.html +++ b/templates/web/base/contact/index.html @@ -63,7 +63,7 @@ [% IF problem.anonymous %] [% tprintf( loc('Reported anonymously at %s'), prettify_dt( problem.confirmed ) ) %] [% ELSE %] - [% tprintf( loc('Reported by %s at %s'), problem.user.name, prettify_dt( problem.confirmed ) ) | html %] + [% tprintf( loc('Reported by %s at %s'), problem.name, prettify_dt( problem.confirmed ) ) | html %] [% END %] </cite> diff --git a/templates/web/bathnes/contact/index.html b/templates/web/bathnes/contact/index.html index f0589bd9e..aaa0d3c57 100644 --- a/templates/web/bathnes/contact/index.html +++ b/templates/web/bathnes/contact/index.html @@ -63,7 +63,7 @@ [% IF problem.anonymous %] [% tprintf( loc('Reported anonymously at %s'), prettify_dt( problem.confirmed ) ) %] [% ELSE %] - [% tprintf( loc('Reported by %s at %s'), problem.user.name, prettify_dt( problem.confirmed ) ) | html %] + [% tprintf( loc('Reported by %s at %s'), problem.name, prettify_dt( problem.confirmed ) ) | html %] [% END %] </cite> |