43 lines
1.6 KiB
Plaintext
43 lines
1.6 KiB
Plaintext
|
<fieldset id="attribute_<%= ua.key %>"<%= raw(' style="display: none;"') unless (@user.active_attributes.include?(ua.key) rescue nil) %>>
|
||
|
|
||
|
<%= fields_for 'user[user_attributes]', user_attribute, :index => nil do |f| %>
|
||
|
<legend><%= ua.i18n_variable[I18n.locale] %></legend>
|
||
|
<%= f.hidden_field :key, :value => ua.key %>
|
||
|
<%= f.hidden_field :id unless user_attribute.new_record? %>
|
||
|
|
||
|
<table>
|
||
|
|
||
|
<tr>
|
||
|
<th><%= t('admin.attribute') %></th>
|
||
|
<% @site_valid_locales.each do |locale| %>
|
||
|
<th style="color:<%= colorize_in_use_locale(locale) %>"><%= locale %></th>
|
||
|
<% end %>
|
||
|
</tr>
|
||
|
|
||
|
<% ua.attribute_attr_models.each do |attr| %>
|
||
|
<tr>
|
||
|
<td><%= attr.i18n_variable[I18n.locale] %></td>
|
||
|
<% if attr["locale"] && attr["markup"] == 'text_field' %>
|
||
|
<% @site_valid_locales.each do |locale| %>
|
||
|
<td>
|
||
|
<%= text_field_tag "user[user_attributes][][#{attr.key}_#{locale}]", (user_attribute["#{attr.key}_#{locale}"] rescue nil) %>
|
||
|
</td>
|
||
|
<% end -%>
|
||
|
<% else %>
|
||
|
<td colspan=<%= @site_valid_locales.size %>>
|
||
|
<% if attr["markup"] == "text_field" %>
|
||
|
<%= text_field_tag "user[user_attributes][][#{attr.key}]", (user_attribute[attr.key] rescue nil) %>
|
||
|
<% elsif attr["markup"] == "select" %>
|
||
|
<%= select_tag "user[user_attributes][][#{attr.key}]", options_for_select(attr["options"], user_attribute[attr.key]) %>
|
||
|
<% end -%>
|
||
|
</td>
|
||
|
<% end -%>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
|
||
|
</table>
|
||
|
|
||
|
<% end %>
|
||
|
|
||
|
</fieldset>
|