aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfrancis <francis>2008-09-04 13:44:10 +0000
committerfrancis <francis>2008-09-04 13:44:10 +0000
commita4da92bceff004870c69b1d899bfd967e0c11e6c (patch)
treec60113cf2682ed9a5f0114570678bc1aa76d0c13
parentb1cb2dc3939bb96700bc78fcaec277670fda4721 (diff)
Make it valid HTML.
-rw-r--r--app/views/request/_describe_state.rhtml68
1 files changed, 33 insertions, 35 deletions
diff --git a/app/views/request/_describe_state.rhtml b/app/views/request/_describe_state.rhtml
index 8ba32f7b3..a4f573e10 100644
--- a/app/views/request/_describe_state.rhtml
+++ b/app/views/request/_describe_state.rhtml
@@ -1,41 +1,39 @@
<% if @is_owning_user %>
<% form_for(:incoming_message, @info_request, :url => describe_state_url(:id => @info_request.id)) do |f| %>
<h2>What is the status of this request now?</h2>
- <p>
- <hr>
- <div>
- <%= radio_button "incoming_message", "described_state", "waiting_response", :id => 'waiting_response' + id_suffix %>
- <label for="waiting_response<%=id_suffix%>">I'm still <strong>waiting</strong> for my information / a rejection (e.g. if the new response was just an acknowledgement)</label>
- </div>
- <div>
- <%= radio_button "incoming_message", "described_state", "waiting_clarification", :id => 'waiting_clarification' + id_suffix %>
- <label for="waiting_clarification<%=id_suffix%>">I'm about to <strong>clarify</strong> my request</label>
- </div>
- <hr>
- <div>
- <%= radio_button "incoming_message", "described_state", "not_held", :id => 'not_held' + id_suffix %>
- <label for="not_held<%=id_suffix%>">The authority does <strong>not have</strong> the information (perhaps they suggest making the request elsewhere)</label>
- </div>
- <div>
- <%= radio_button "incoming_message", "described_state", "partially_successful", :id => 'partially_successful' + id_suffix %>
- <label for="partially_successful<%=id_suffix%>">I've received <strong>some of the information</strong> that I asked for</label>
- </div>
- <div>
- <%= radio_button "incoming_message", "described_state", "successful", :id => 'successful' + id_suffix %>
- <label for="successful<%=id_suffix%>">I've received <strong>all the information</strong> (or equivalents) that I asked for</label>
- </div>
- <div>
- <%= radio_button "incoming_message", "described_state", "rejected", :id => 'rejected' + id_suffix %>
- <label for="rejected<%=id_suffix%>">My request has been <strong>rejected</strong></label>
- </div>
- <hr>
- <div>
- <%= radio_button "incoming_message", "described_state", "requires_admin", :id => 'requires_admin' + id_suffix %>
- <label for="requires_admin<%=id_suffix%>"><strong>None</strong> of the above - enter quick summary here:</label>
- <%= text_field "incoming_message", 'requires_admin_details', :class => 'requires_admin_details', :id => 'requires_admin_details' + id_suffix, :size => 60 %>
- </div>
- <hr>
- </p>
+ <hr>
+ <div>
+ <%= radio_button "incoming_message", "described_state", "waiting_response", :id => 'waiting_response' + id_suffix %>
+ <label for="waiting_response<%=id_suffix%>">I'm still <strong>waiting</strong> for my information / a rejection (e.g. if the new response was just an acknowledgement)</label>
+ </div>
+ <div>
+ <%= radio_button "incoming_message", "described_state", "waiting_clarification", :id => 'waiting_clarification' + id_suffix %>
+ <label for="waiting_clarification<%=id_suffix%>">I'm about to <strong>clarify</strong> my request</label>
+ </div>
+ <hr>
+ <div>
+ <%= radio_button "incoming_message", "described_state", "not_held", :id => 'not_held' + id_suffix %>
+ <label for="not_held<%=id_suffix%>">The authority does <strong>not have</strong> the information (perhaps they suggest making the request elsewhere)</label>
+ </div>
+ <div>
+ <%= radio_button "incoming_message", "described_state", "partially_successful", :id => 'partially_successful' + id_suffix %>
+ <label for="partially_successful<%=id_suffix%>">I've received <strong>some of the information</strong> that I asked for</label>
+ </div>
+ <div>
+ <%= radio_button "incoming_message", "described_state", "successful", :id => 'successful' + id_suffix %>
+ <label for="successful<%=id_suffix%>">I've received <strong>all the information</strong> (or equivalents) that I asked for</label>
+ </div>
+ <div>
+ <%= radio_button "incoming_message", "described_state", "rejected", :id => 'rejected' + id_suffix %>
+ <label for="rejected<%=id_suffix%>">My request has been <strong>rejected</strong></label>
+ </div>
+ <hr>
+ <div>
+ <%= radio_button "incoming_message", "described_state", "requires_admin", :id => 'requires_admin' + id_suffix %>
+ <label for="requires_admin<%=id_suffix%>"><strong>None</strong> of the above - enter quick summary here:</label>
+ <%= text_field "incoming_message", 'requires_admin_details', :class => 'requires_admin_details', :id => 'requires_admin_details' + id_suffix, :size => 60 %>
+ </div>
+ <hr>
<p>Filling this in helps everyone track the progress of your request.
</p>