diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/admin_public_body/edit.rhtml | 12 | ||||
-rw-r--r-- | app/views/admin_request/show.rhtml | 2 |
2 files changed, 8 insertions, 6 deletions
diff --git a/app/views/admin_public_body/edit.rhtml b/app/views/admin_public_body/edit.rhtml index fbc750db1..b2932f0d7 100644 --- a/app/views/admin_public_body/edit.rhtml +++ b/app/views/admin_public_body/edit.rhtml @@ -12,10 +12,12 @@ <%= link_to 'List all', '../list' %> </p> -<% form_tag('../destroy/' + @public_body.id.to_s) do %> - <p> - <%= hidden_field_tag(:public_body_id, { :value => @public_body.id } ) %> - <%= submit_tag "Destroy " + @public_body.name %> (this is permanent!) - </p> +<% if @public_body.info_requests.size == 0 %> + <% form_tag('../destroy/' + @public_body.id.to_s) do %> + <p> + <%= hidden_field_tag(:public_body_id, { :value => @public_body.id } ) %> + <%= submit_tag "Destroy " + @public_body.name %> (this is permanent!) + </p> + <% end %> <% end %> diff --git a/app/views/admin_request/show.rhtml b/app/views/admin_request/show.rhtml index d5356dd10..bef2e41de 100644 --- a/app/views/admin_request/show.rhtml +++ b/app/views/admin_request/show.rhtml @@ -109,7 +109,7 @@ <% end %> </table> -<h2>Comments</h2> +<h2>Annotations</h2> <table> <tr> |