16 lines
645 B
Plaintext
16 lines
645 B
Plaintext
<%= simple_form_for(@artist) do |f| %>
|
|
<div class="input">
|
|
<label for="artist_name">Name</label>
|
|
<%= text_field "artist", "name" %>
|
|
[<%= link_to "check", "#", :id => "check-name-link" %>]
|
|
<span id="check-name-result"></span>
|
|
</div>
|
|
<%= 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"} %>
|
|
<%= f.input :is_active %>
|
|
|
|
<%= dtext_field "artist", "notes" %>
|
|
<%= f.button :submit, "Submit" %>
|
|
<%= dtext_preview_button "artist", "notes" %>
|
|
<% end %> |