Files
danbooru/app/views/artists/_form.html.erb
2010-10-08 19:07:47 -04:00

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 %>