18 lines
552 B
Plaintext
18 lines
552 B
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 'quantity_id', toggle_column_options %></td>
|
|
<td><%= submit_tag l(:button_add) %></td>
|
|
</tr>
|
|
</table>
|
|
<% end %>
|
|
</div>
|
|
</fieldset>
|