2012-12-28 09:58:35 +00:00
|
|
|
<% if (@module_app && @module_app.widget_options) %>
|
|
|
|
<%= label_tag('widget_options') %>
|
2013-01-06 16:40:43 +00:00
|
|
|
<% if @module_app.key.eql?('gallery') %>
|
|
|
|
<%= t('gallery.gallery') %>
|
|
|
|
<%= select_tag "page_part[widget_options][album_id]", options_from_collection_for_select(@albums, :id, :name, :selected => (@part.widget_options[key] rescue nil)) %>
|
|
|
|
<% end %>
|
2012-12-28 09:58:35 +00:00
|
|
|
<% if @module_app.widget_options.has_key? @part.widget_path%>
|
|
|
|
<% @module_app.widget_options[@part.widget_path].each do |key,options| %>
|
|
|
|
<%= label_tag(t(@module_app.widget_options_fields_i18n[@part.widget_path][key]))%>
|
|
|
|
<%= select_tag "page_part[widget_options][#{key}]", options_for_select(options,(@part.widget_options[key] rescue nil)) %>
|
|
|
|
<!-- (@part[:widget_field][i][0] if (@part && !@part[:widget_field].blank? && !@part[:widget_field][i].blank?)) ) -->
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% end %>
|