36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
<fieldset id="options" class="collapsible">
|
|
<legend onclick="toggleFieldset(this);"><%= l(:label_options) %></legend>
|
|
<div>
|
|
<%= form_tag toggle_column_project_ingredients_path(@project),
|
|
id: 'toggle-column-form', name: 'toggle-column-form',
|
|
method: :post, remote: true do %>
|
|
|
|
<table>
|
|
<tr>
|
|
<td style="width:100%"></td>
|
|
<td>
|
|
<%= select_tag 'id', toggle_column_options %>
|
|
</td>
|
|
<td>
|
|
<%= submit_tag l(:button_add) %>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<% end %>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<table class="list" style="border:none; width:100%">
|
|
<tr>
|
|
<% total_width = 3 + @quantities.length %>
|
|
<td style="visibility: hidden; border: none; width:<%= 3 * 100/total_width%>%"></td>
|
|
<% @quantities.each do |q| %>
|
|
<td class="action" style="width:<%= 100/total_width %>%">
|
|
<%= link_to l(:button_hide),
|
|
toggle_column_project_ingredients_path(@project, quantity_id: q.id),
|
|
{class: "icon icon-close", method: :post, remote: true} %>
|
|
</td>
|
|
<% end %>
|
|
</tr>
|
|
</table>
|