<% ['Virtual Machines', 'Repositories'].each do |section| %> <% section_id = section.gsub(" ","_").downcase %>
<%= render partial: "manage_#{section_id}" %>
<% end %>
<% ['SSH Keys', 'Current Token'].each do |section| %> <% section_id = section.gsub(" ","_").downcase %>
<% if section_id == 'ssh_keys' %>
<%= link_to raw('' " Add new SSH key"), add_ssh_key_popup_url, {class: 'btn btn-xs btn-primary', :remote => true, 'data-toggle' => "modal", 'data-target' => '#add-ssh-key-modal-window'} %>
<% end %>

<%= section %>

<%= render partial: "manage_#{section_id}" %>
<% end %>