diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/help/about.rhtml | 40 | ||||
-rw-r--r-- | app/views/layouts/default.rhtml | 1 | ||||
-rw-r--r-- | app/views/request/show.rhtml | 8 |
3 files changed, 46 insertions, 3 deletions
diff --git a/app/views/help/about.rhtml b/app/views/help/about.rhtml new file mode 100644 index 000000000..371c4bc87 --- /dev/null +++ b/app/views/help/about.rhtml @@ -0,0 +1,40 @@ +<dl> + +<dt>What is GovernmentSpy for?</dt> + +<dd>To help you find out inside information about what the UK government +is doing.</dd> + +<dt>How does the site work?</dt> + +<dd>You choose the public body that you would like information from, then +write a brief note describing what you want to know. We then send your request +to the public body. Any response they make is automatically published on the +website for you and anyone else to find and read. +</dd> + +<dt>Why would I bother to do this?</dt> + +<dd>You pay taxes, and then Government does things with the money. Some it does +badly, some it does well. The more we find out about how Government works, the +better able we are to make suggestions to improve the things that are done badly, +and to celebrate the things which are done well. This affects a whole range +of issues important to your life, from healthcare through to national defense. +</dd> + +</dl> + +<h1>Making requests</h1> +<dl> + +<dt id="quickly_response">How quickly will I get a response?</dt> + +<dd>By law public bodies must respond within 20 days, excluding weekends and +any UK bank holidays. The date that the response is due by is shown on the +page for your request. If you have agreed to pay a fee, or if you had to give +follow up information to clarify your request, the legal date will be slightl +data. +</dd> + +</dl> + diff --git a/app/views/layouts/default.rhtml b/app/views/layouts/default.rhtml index ef468c522..bf7431e5e 100644 --- a/app/views/layouts/default.rhtml +++ b/app/views/layouts/default.rhtml @@ -20,6 +20,7 @@ <li><%=link_to "My Requests", user_url(@user) %></li> <% else %> <% end %> + <li><%= link_to "About", about_url %></li> <!-- <li><a href="/about">About</a></li> --> </ul> diff --git a/app/views/request/show.rhtml b/app/views/request/show.rhtml index 99ba55d11..dd0dbd63b 100644 --- a/app/views/request/show.rhtml +++ b/app/views/request/show.rhtml @@ -11,11 +11,13 @@ <p id="request_status"> <% if @status == 'awaiting' %> - Currently <strong>waiting for a response</strong> from <%= public_body_link(@info_request.public_body) %> + Currently <strong>waiting for a response</strong> from <%= public_body_link(@info_request.public_body) %>. + Response must be made by <strong><%= simple_date(@date_response_required_by) %></strong>. <% elsif @status == 'overdue' %> Currently <strong>overdue a response</strong> from <%= - public_body_link(@info_request.public_body) %>. Under section blah of the - Freedom of Information Act 2000 responses must be made within 20 working days. + public_body_link(@info_request.public_body) %>. The + <%= link_to "response was due", about_url %></li> + on <strong><%= simple_date(@date_response_required_by) %></strong>. <% elsif @status == 'information' %> The request was at least partly <strong>successful</strong>. <% elsif @status == 'none' %> |