2011-02-01 07:12:23 +00:00
|
|
|
<%= fields_for "user_#{@attribute}_model[attribute_models][]", attribute_model, :index => nil do |f| %>
|
2011-04-13 10:19:51 +00:00
|
|
|
|
|
|
|
<tr>
|
2011-02-01 02:46:26 +00:00
|
|
|
<td><%= attribute_model.new_record? ? (f.text_field :key, {:style => "width:130px"}) : attribute_model.key %></td>
|
2011-04-13 10:19:51 +00:00
|
|
|
<td class='select_mulitlingual' style='text-align:center'>
|
2011-02-01 02:46:26 +00:00
|
|
|
<%= check_box_tag "locale[]", value = '', attribute_model.locale.nil? ? true : attribute_model.locale %>
|
2011-02-01 07:12:23 +00:00
|
|
|
<%= hidden_field_tag "user_#{@attribute}_model[attribute_models][][locale]", attribute_model.locale.nil? ? true : attribute_model.locale %>
|
2011-04-13 10:19:51 +00:00
|
|
|
</td>
|
|
|
|
<% @site_valid_locales.each do |locale| %>
|
2011-02-01 07:12:23 +00:00
|
|
|
<td><%= text_field_tag "user_#{@attribute}_model[attribute_models][][i18n_variable][#{locale}]", (attribute_model.i18n_variable[locale] rescue nil), :style => "width:130px" %></td>
|
2011-04-13 10:19:51 +00:00
|
|
|
<% end %>
|
|
|
|
<td class='select_type'>
|
|
|
|
<%= f.select :markup, LIST[:markups], {}, {:style => "width:90px"} %>
|
2011-02-01 02:46:26 +00:00
|
|
|
<div <%= attribute_model[:markup].eql?('select') ? nil : "style='display:none'"%>>
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= t('admin.options') %>:
|
2011-02-01 07:12:23 +00:00
|
|
|
<%= text_field_tag "user_#{@attribute}_model[attribute_models][][select_list_options]", attribute_model.select_list_options, :style => "width:130px" %>
|
2011-04-13 10:19:51 +00:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
2011-02-01 02:46:26 +00:00
|
|
|
<% if attribute_model.new_record? %>
|
2011-04-13 10:19:51 +00:00
|
|
|
<a href="#" class="remove">(<%= t(:delete) %>)</a>
|
|
|
|
<% else %>
|
|
|
|
<a href="#" class="remove_existing_record">(<%= t(:delete) %>)</a>
|
2011-02-01 07:12:23 +00:00
|
|
|
<%= hidden_field_tag "user_#{@attribute}_model[attribute_models][][should_destroy]", nil , :class => 'should_destroy' %>
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= f.hidden_field :id %>
|
2011-01-28 06:44:08 +00:00
|
|
|
<%= f.hidden_field :key %>
|
2011-04-13 10:19:51 +00:00
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<% end %>
|