diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/body/show.rhtml | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/app/views/body/show.rhtml b/app/views/body/show.rhtml index 0969c7d8d..58a1abc73 100644 --- a/app/views/body/show.rhtml +++ b/app/views/body/show.rhtml @@ -22,16 +22,19 @@ <% end %> <% if @public_body.eir_only? %> -<p>You can only request information about the environment from this authority.</p> + <p>You can only request information about the environment from this authority.</p> <% end %> -<p> -<% if @public_body.eir_only? %> -<%= link_to "Make a new EIR request to " + h(@public_body.name), new_request_to_body_url(:public_body_id => @public_body.id.to_s)%> -<% else %> -<%= link_to "Make a new FOI request to " + h(@public_body.name), new_request_to_body_url(:public_body_id => @public_body.id.to_s)%> -<% end %> -</p> +<div id="stepwise_make_request"> + <strong>Next, + <% if @public_body.eir_only? %> + <%= link_to "make a new EIR request", new_request_to_body_url(:public_body_id => @public_body.id.to_s)%> + <% else %> + <%= link_to "make a new FOI request", new_request_to_body_url(:public_body_id => @public_body.id.to_s)%> + <% end %> + to <%= h(@public_body.name) %> + </strong> +</div> <% if @public_body.info_requests.empty? %> <% if @public_body.eir_only? %> |