mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
11 lines
280 B
Text
11 lines
280 B
Text
<%%= semantic_form_for @<%= singular_name %> do |f| %>
|
|
<%%= f.inputs do %>
|
|
<%- attributes.each do |attribute| -%>
|
|
<%%= f.input :<%= attribute.name %> %>
|
|
<%- end -%>
|
|
<%% end %>
|
|
|
|
<%%= f.actions do %>
|
|
<%%= f.action :submit, :as => :input %>
|
|
<%% end %>
|
|
<%% end %>
|