diff --git a/app/views/artists/edit.html.erb b/app/views/artists/edit.html.erb index 97cfcc3e8..cc12ba3e4 100644 --- a/app/views/artists/edit.html.erb +++ b/app/views/artists/edit.html.erb @@ -2,8 +2,12 @@

Edit Artist

- <% if @artist.visible? %> + <% if !@artist.is_active? %> +

This artist entry is inactive and cannot be edited.

+ + <% elsif @artist.editable_by?(CurrentUser.user) %> <%= render "form" %> + <% else %>

The artist requested removal of this page.

<% end %>