8 lines
319 B
Plaintext
8 lines
319 B
Plaintext
<%= simple_form_for(@artist) do |f| %>
|
|
<%= f.input :name %>
|
|
<%= f.input :other_names, :hint => "Separate with commas", :as => :text %>
|
|
<%= f.input :group_name %>
|
|
<%= f.input :url_string, :label => "URLs", :as => :text, :size => "10x5" %>
|
|
<%= f.input :notes, :as => :text %>
|
|
<%= f.button :submit %>
|
|
<% end %> |