Added Ingredients import action
This commit is contained in:
@@ -4,11 +4,34 @@
|
||||
|
||||
<div class="contextual">
|
||||
<% if User.current.allowed_to?(:manage_common, @project) %>
|
||||
<%= link_to t(".heading_import_ingredients"), '#', :class => 'icon icon-file',
|
||||
:onclick => 'showAndScrollTo("import-ingredients", "filename"); return false;' %>
|
||||
<%= link_to t(".heading_new_ingredient"), '#', :class => 'icon icon-add',
|
||||
:onclick => 'showAndScrollTo("add-ingredient", "ingredient_name"); return false;' %>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<div id="import-ingredients" style="display:none;">
|
||||
<h2><%= t ".heading_import_ingredients" %></h2>
|
||||
|
||||
<%= form_tag import_project_ingredients_path(@project),
|
||||
:multipart => true,
|
||||
:id => 'import-form' do %>
|
||||
<div class="box tabular">
|
||||
<p>
|
||||
<label><%= t ".label_import_select_csv_file" %></label>
|
||||
<%= file_field_tag 'file' %>
|
||||
</p>
|
||||
<p>
|
||||
<%= t ".import_hints" %>
|
||||
</p>
|
||||
</div>
|
||||
<%= submit_tag l(:button_import) %>
|
||||
<%= link_to l(:button_cancel), "#", :onclick => '$("#import-ingredients").hide()' %>
|
||||
<% end %>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<div id="add-ingredient" <%= 'style=display:none;' if @ingredient.errors.empty? %>>
|
||||
<h2><%= t ".heading_new_ingredient" %></h2>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user