orbit-basic/app/views/admin/users/_show_user_attribute.html.erb

18 lines
515 B
Plaintext
Raw Normal View History

2011-02-01 07:12:23 +00:00
<fieldset>
<legend><%= am.i18n_variable[I18n.locale] %></legend>
<table>
2011-05-02 04:07:31 +00:00
<% am.get_enabled_attribute_models.each do |attr| %>
2011-02-01 07:12:23 +00:00
<tr>
<td><%= attr.i18n_variable[I18n.locale] %></td>
<td>
<% if attr["locale"] && attr["markup"] == 'text_field' %>
2011-11-12 09:54:45 +00:00
<%= show_user_attribute(object, attr.key, I18n.locale) %>
2011-02-01 07:12:23 +00:00
<% else %>
2011-11-12 09:54:45 +00:00
<%= show_user_attribute(object, attr.key) %>
2011-02-01 07:12:23 +00:00
<% end %>
</td>
</tr>
<% end %>
</table>
</fieldset>