<%= simple_form_for(@artist) do |f| %>
<% if @artist.new_record? %> <%= text_field "artist", "name" %> <% elsif CurrentUser.user.is_builder? %> <%= text_field "artist", "name" %> Change to rename this artist entry and its wiki page <% else %>

<%= @artist.name %>

<% end %>
<%= f.input :other_names_comma, :hint => "Separate with commas", :as => :text, :label => "Other names" %> <%= f.input :group_name %> <%= f.input :url_string, :label => "URLs", :as => :text, :input_html => {:size => "50x5"} %> <%= dtext_field "artist", "notes" %> <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %> <%= dtext_preview_button "artist", "notes" %> <% end %>