orbit-basic/app/views/admin/page_parts/_widget_fields.html.erb

13 lines
515 B
Plaintext
Raw Normal View History

2012-08-09 07:25:30 +00:00
<% if (@module_app && @module_app.widget_fields) %>
<%= label_tag('widget_field') %>
<% @module_app.widget_fields.each_with_index do |widget_field, i| %>
<%= i+1 %>
<%= select_tag "page_part[widget_field][]", widget_field_options(i), :include_blank => true %>
<%= select_tag "page_part[widget_field_type][]", widget_fiield_type_options(i), :include_blank => true %> <br />
2012-08-09 07:25:30 +00:00
<% end %>
2012-12-28 07:30:46 +00:00
<%= label_tag :widget_data_count %>
<%= text_field_tag :widget_data_count,@part.widget_data_count %>
2012-08-09 07:25:30 +00:00
<% end %>