<% profile_config = Rails.configuration.user_profile_form_fields this_user = User.limit(1).where(uuid: current_user.uuid).first user_prefs = User.limit(1).where(uuid: current_user.uuid).first.prefs current_user_profile = user_prefs[:profile] if user_prefs %>

Profile

You can manage your profile using this page. Any feilds in red are required and missing. Please fill in those fields before you can accesse Arvados Workbench.


<%= form_tag update_profile_path, {method: 'put', id: 'save_profile_form', name: 'save_profile_form', class: 'form-horizontal', remote: true} do %>

<%=current_user.email%>

<%=current_user.first_name%>

<%=current_user.last_name%>

<%=this_user.andand.identity_url%>

<% profile_config.andand.each do |entry| %> <% label = entry['required'] ? '* ' : '' label += entry['form_field_title'] value = current_user_profile[entry['key'].to_sym] if current_user_profile %>
<% if entry['type'] == 'select' %>
<% else %>
<% end %>
<% end %>
<% end %>