diff options
-rw-r--r-- | app/models/info_request.rb | 4 | ||||
-rw-r--r-- | app/views/help/about.rhtml | 8 | ||||
-rw-r--r-- | app/views/request/show.rhtml | 28 |
3 files changed, 20 insertions, 20 deletions
diff --git a/app/models/info_request.rb b/app/models/info_request.rb index 6fc39c86f..5b0140348 100644 --- a/app/models/info_request.rb +++ b/app/models/info_request.rb @@ -729,9 +729,9 @@ public elsif status == 'waiting_response' "Awaiting response." elsif status == 'waiting_response_overdue' - "Response late." + "Response delayed." elsif status == 'waiting_response_very_overdue' - "Extremely late." + "Response overdue." elsif status == 'not_held' "Information not held." elsif status == 'rejected' diff --git a/app/views/help/about.rhtml b/app/views/help/about.rhtml index 03fa79278..3c43abc23 100644 --- a/app/views/help/about.rhtml +++ b/app/views/help/about.rhtml @@ -524,7 +524,7 @@ see a problem with a particular request, let us know and we'll fix it.</li> </ul> <p>The date thus calculated is shown on requests with the text "By law, -Liverpool City Council should normally have answered by...". There is only +Liverpool City Council should normally have responded by...". There is only one case which is not normal. </p> @@ -545,9 +545,9 @@ to answer. WhatDoTheyKnow displays requests which are overdue by that much with stronger wording to indicate they are definitely late. <li>The Freedom of Information (Scotland) Act does not allow such a public -interest extension. We would like to see the law changed to either remove the -extension from the UK Act, or to reintroduce an absolute time limit of 40 -working days even with the extension (the House of Lords <a +interest extension. WhatDoTheyKnow would like to see the law changed to either +remove the extension from the UK Act, or to reintroduce an absolute time limit +of 40 working days even with the extension (the House of Lords <a href="http://www.publicwhip.org.uk/division.php?date=2000-10-17&number=1&house=lords">voted to remove</a> provision for such a time limit). </li> diff --git a/app/views/request/show.rhtml b/app/views/request/show.rhtml index a9efd5435..e6e1fbcd1 100644 --- a/app/views/request/show.rhtml +++ b/app/views/request/show.rhtml @@ -65,22 +65,22 @@ no later than <strong><%= simple_date(@info_request.date_response_required_by) %></strong> (<%= link_to "details", about_url + "#quickly_response" %>). <% elsif @status == 'waiting_response_overdue' %> - Response to this request is <strong>late</strong>. - By law, <%= public_body_link(@info_request.public_body) %> should - have responded <strong>promptly</strong>, - <% if @info_request.public_body.is_school? %> - and in term time by - <strong><%= simple_date(@info_request.date_response_required_by) %></strong> - <% else %> - and normally by - <strong><%= simple_date(@info_request.date_response_required_by) %></strong> - <% end %> + Response to this request is <strong>delayed</strong>. + By law, <%= public_body_link(@info_request.public_body) %> + <% if @info_request.public_body.is_school? %> + in term time should + <% else %> + should normally + <% end %> + have responded by + <strong><%= simple_date(@info_request.date_response_required_by) %></strong> (<%= link_to "details", about_url + "#quickly_response" %>). <% elsif @status == 'waiting_response_very_overdue' %> - <%= public_body_link(@info_request.public_body) %> are <strong>extremely late</strong>. - By law, they should have responded to this request promptly, and under all - circumstances by <%= simple_date(@info_request.date_very_overdue_after) %> - (<%= link_to "more details", about_url + "#quickly_response" %>). + Response to this request is <strong>overdue</strong>. + By law, under all circumstances, <%= public_body_link(@info_request.public_body) %> + should have responded by + <%= simple_date(@info_request.date_very_overdue_after) %> + (<%= link_to "details", about_url + "#quickly_response" %>). You can <strong>complain</strong> by <%= link_to "requesting an internal review", show_response_no_followup_url(:id => @info_request.id, :incoming_message_id => nil) + "?internal_review=1#followup" %>. <% elsif @status == 'not_held' %> |