diff options
author | Dave Whiteland <dave@mysociety.org> | 2013-08-15 08:19:59 +0100 |
---|---|---|
committer | Dave Whiteland <dave@mysociety.org> | 2013-09-05 17:31:07 +0100 |
commit | d7cb9cf2117d77036bcf0f8541288b5c03fa62ed (patch) | |
tree | 223f36ec118754e9966b7da3ea545c67997bbbb8 | |
parent | 404b8328ec8022513df39723112a2084be341e61 (diff) |
add missing link separator
-rw-r--r-- | templates/web/default/admin/body.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/default/admin/body.html b/templates/web/default/admin/body.html index 7e57756be..70176d248 100644 --- a/templates/web/default/admin/body.html +++ b/templates/web/default/admin/body.html @@ -11,9 +11,9 @@ <a href="[% c.uri_for_email( '/around', { pc => example_pc } ) %]">[% tprintf( loc('Example postcode %s'), example_pc ) | html %]</a> | [% END %] [% IF c.cobrand.moniker == 'emptyhomes' %] -<a href="[% c.uri_for( 'reports', search => 'body:' _ body_id ) %]">[% loc('List all reported problems' ) %]</a> +<a href="[% c.uri_for( 'reports', search => 'body:' _ body_id ) %]">[% loc('List all reported problems' ) %]</a> | [% ELSE %] -<a href="[% c.uri_for_email( '/reports/' _ body_id ) %]">[% loc('List all reported problems' ) %]</a> +<a href="[% c.uri_for_email( '/reports/' _ body_id ) %]">[% loc('List all reported problems' ) %]</a> | [% END %] <a href="[% c.uri_for( 'body', body_id, { text => 1 } ) %]">[% loc('Text only version') %]</a> </p> |