diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-01-16 13:55:58 +0000 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2015-02-06 16:29:14 +0000 |
commit | e99d20a09929b3fbb1f037b89f34a2e5aaac1d87 (patch) | |
tree | 9ce34e79a18fad142da290ad62909e193c0df1da | |
parent | 3eb9b4cfe595e2f41dfbb69c4815ebc7f9b8932b (diff) |
Add links for viewing authority and classifying requests.
Not yet sure what to do about the first option here which currently
isn't supported.
-rw-r--r-- | app/views/request/_request_sent.html.erb | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/app/views/request/_request_sent.html.erb b/app/views/request/_request_sent.html.erb index 16ca33f4a..84918b155 100644 --- a/app/views/request/_request_sent.html.erb +++ b/app/views/request/_request_sent.html.erb @@ -18,9 +18,11 @@ <h2><%= _("Keep your request up to date") %></h2> <p> - <%= _("If you write about this request (for example in a forum or a blog) " \ - "please link to this page, and add an annotation below telling people " \ - "about your writing.") %> + <%= _('If you write about this request ' \ + '(for example in a forum or a blog) ' \ + 'please link to this page, and <a href="{{url}}">add an ' \ + 'annotation</a> below telling people ' \ + 'about your writing.', :url => new_comment_url(:url_title => @info_request.url_title).html_safe) %> </p> </div> <div class="request-sent-message__column-2"> @@ -32,11 +34,11 @@ "to your request") %></a> </li> <li> - <a href="#"><%= _("View other requests to $authority_name$") %></a> + <%= link_to _("View other requests to {{public_body}}", :public_body => @info_request.public_body.name), public_body_path(@info_request.public_body) %> </li> <li> - <a href="#"><%= _("Help us classify requests that haven't " \ - "been updated") %></a> + <%= link_to _("Help us classify requests that haven't " \ + "been updated"), categorise_play_path %> </li> </ul> </div> |