11 lines
842 B
Plaintext
11 lines
842 B
Plaintext
|
|
<% if (@module_app && @module_app.widget_fields) %>
|
|
<%= label_tag('frontend_field & frontend_field_type') %>
|
|
<% @module_app.widget_fields.each_with_index do |frontend_field, i| %>
|
|
<%= i+1 %>
|
|
<%= select_tag "page[frontend_field][]", options_for_select(@module_app.widget_fields.collect{|frontend_field| [frontend_field.humanize, frontend_field]}, (@item[:frontend_field][i][0] if (@item && !@item[:frontend_field].blank? && !@item[:frontend_field][i].blank?)) ), :include_blank => true %>
|
|
<%= select_tag "page[frontend_field_type][]", options_for_select(LIST[:widget_field_type].collect{|frontend_field| [frontend_field.humanize, frontend_field]}, (@item[:frontend_field][i][1] if (@item && !@item[:frontend_field].blank? && !@item[:frontend_field][i].blank?)) ), :include_blank => true %> <br />
|
|
<% end %>
|
|
<% end %>
|
|
|
|
|