33 lines
961 B
Plaintext
33 lines
961 B
Plaintext
<% content_for :secondary do %>
|
|
<ul class="list">
|
|
<li><%= link_to t(:new_user, :scope => :panel), new_panel_user_path, :class => 'button positive' %></li>
|
|
</ul>
|
|
<% end -%>
|
|
|
|
<h1><%= t('panel.user_panel') %></h1>
|
|
|
|
<%= image_tag(@user.avatar.thumb.url) rescue nil %>
|
|
|
|
<%= @user.email %>
|
|
|
|
<% @user.get_active_attribute_models.each do |am| %>
|
|
<% user_attribute = @user.get_attribute_from_model_key(am.key) %>
|
|
<fieldset>
|
|
<legend><%= am.i18n_variable[I18n.locale] %></legend>
|
|
<table>
|
|
<% am.attribute_attr_models.each do |attr| %>
|
|
<tr>
|
|
<td><%= attr.i18n_variable[I18n.locale] %></td>
|
|
<td>
|
|
<% if attr["locale"] && attr["markup"] == 'text_field' %>
|
|
<%= user_attribute["#{attr.key}_#{I18n.locale}"] %>
|
|
<% else %>
|
|
<%= user_attribute["#{attr.key}"] %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
</fieldset>
|
|
<% end -%>
|