36 lines
1.9 KiB
Plaintext
36 lines
1.9 KiB
Plaintext
<%= fields_for "user_#{@attribute}_model[attribute_models][]", attribute_model, :index => nil do |f| %>
|
|
<tr class="list_item">
|
|
<td><%= attribute_model.new_record? ? (f.text_field :key) : attribute_model.key %></td>
|
|
<td class='select_mulitlingual' style='text-align:center'>
|
|
<%= check_box_tag "locale[]", value = '', attribute_model.locale.nil? ? true : attribute_model.locale %>
|
|
<%= hidden_field_tag "user_#{@attribute}_model[attribute_models][][locale]", attribute_model.locale.nil? ? true : attribute_model.locale %>
|
|
</td>
|
|
<% @site_valid_locales.each do |locale| %>
|
|
<td><%= text_field_tag "user_#{@attribute}_model[attribute_models][][i18n_variable][#{locale}]", (attribute_model.i18n_variable[locale] rescue nil), :style => "width:130px" %></td>
|
|
<% end %>
|
|
<td class='select_type'>
|
|
<%= f.select :markup, LIST[:markups], {}, {:style => "width:90px"} %>
|
|
<div <%= attribute_model[:markup].eql?('select') ? nil : "style='display:none'"%>>
|
|
<%= t('admin.options') %>:
|
|
<%= text_field_tag "user_#{@attribute}_model[attribute_models][][select_list_options]", attribute_model.select_list_options, :style => "width:130px" %>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<span class="action">
|
|
<% if attribute_model.new_record? %>
|
|
<a href="#" class="delete"><%= t(:delete) %></a>
|
|
<% else %>
|
|
<% if attribute_model.is_built_in? %>
|
|
<a href="#" class="change_built_in switch" id="<%= attribute_model.id %>"></a>
|
|
<%= hidden_field_tag "user_#{@attribute}_model[attribute_models][][disabled]", attribute_model.is_disabled? , :class => 'built_in_state' %>
|
|
<% else %>
|
|
<a href="#" class="remove_existing_record delete"><%= t(:delete) %></a>
|
|
<%= hidden_field_tag "user_#{@attribute}_model[attribute_models][][should_destroy]", nil , :class => 'should_destroy' %>
|
|
<% end %>
|
|
<%= f.hidden_field :id %>
|
|
<%= f.hidden_field :key %>
|
|
<% end %>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
<% end %> |