diff options
Diffstat (limited to 'app/views/body/show.rhtml')
-rw-r--r-- | app/views/body/show.rhtml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/app/views/body/show.rhtml b/app/views/body/show.rhtml index 380141340..c7dc49dbf 100644 --- a/app/views/body/show.rhtml +++ b/app/views/body/show.rhtml @@ -9,17 +9,22 @@ <p class="subtitle"> <%=@public_body.type_of_authority(true)%> in the UK<% if not @public_body.short_name.empty? %>, also called <%= h(@public_body.short_name) %><% end %> +(<%= link_to "home page", @public_body.calculated_home_page %>) </p> +<% if @public_body.notes != "" %> +<p><%=@public_body.notes%></p> +<% end %> + <% if @public_body.eir_only? %> <p>You can only request information about the environment from this authority.</p> <% end %> <p> <% if @public_body.eir_only? %> -<%= link_to "Make new EIR request to " + @public_body.short_or_long_name, new_request_to_body_url(:public_body_id => @public_body.id.to_s)%> +<%= link_to "Make new EIR request to " + h(@public_body.short_or_long_name), new_request_to_body_url(:public_body_id => @public_body.id.to_s)%> <% else %> -<%= link_to "Make new FOI request to " + @public_body.short_or_long_name, new_request_to_body_url(:public_body_id => @public_body.id.to_s)%> +<%= link_to "Make new FOI request to " + h(@public_body.short_or_long_name), new_request_to_body_url(:public_body_id => @public_body.id.to_s)%> <% end %> </p> |