6 lines
275 B
Plaintext
6 lines
275 B
Plaintext
<%= form_tag url_for(controller: "memory", action: "table"), method: :get do %>
|
|
<%= select_tag "project", options_for_select(@projects.collect.with_index{|p, i| [@project_names[i], p]}) %>
|
|
<br><br>
|
|
<%= submit_tag "Load table", name: nil, class: "btn blue" %>
|
|
<% end %>
|