forked from Gitlink/forgeplus
17 lines
418 B
Plaintext
17 lines
418 B
Plaintext
|
|
<%= simple_form_for(@sponsorship) do |f| %>
|
|
<%= f.error_notification %>
|
|
<%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :amount %>
|
|
<%= f.input :visible %>
|
|
<%= f.input :sponsor_id %>
|
|
<%= f.input :developer_id %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit %>
|
|
</div>
|
|
<% end %>
|