<%= edit_form_for(@artist) do |f| %> <%= f.input :name, as: :string, input_html: { "data-autocomplete": "tag" } %> <%= f.input :other_names_string, label: "Other names", as: :string, hint: "Separate names with spaces, not commas. Use underscores for spaces inside names." %> <%= f.input :group_name %> <%= f.input :url_string, label: "URLs", as: :text, input_html: { value: params.dig(:artist, :url_string) || @artist.sorted_urls.join("\n")}, hint: "You can prefix a URL with - to mark it as dead." %> <% if @artist.tag&.artist? && @artist.wiki_page.present? %>
<%= format_text(@artist.wiki_page.body, disable_mentions: true) %>
<% end %> <%= f.button :submit, "Submit" %> <% end %>