14 lines
624 B
Plaintext
14 lines
624 B
Plaintext
<%= semantic_form_for([:admin, resource], :url => resource.new_record? ? admin_affiliates_path : "/admin/affiliates/#{resource.id}") do |f| %>
|
|
<%= f.semantic_errors *f.object.errors.keys %>
|
|
<%= f.inputs do %>
|
|
<%= f.input(:user_email, :input_html => {:maxlength => 255}) %>
|
|
<%= f.input(:partner_name, :input_html => {:maxlength => 128}) %>
|
|
<% if resource.new_record? %>
|
|
<%= f.input(:partner_code, :input_html => {:maxlength => 128}) %>
|
|
<% else %>
|
|
<%= f.input(:partner_code, :input_html => {:maxlength => 128, :readonly => 'readonly'}) %>
|
|
<% end %>
|
|
<% end %>
|
|
<%= f.actions %>
|
|
<% end %>
|