new.html.erb 541 B

1234567891011121314151617
  1. <% content_for :subnav_items do %>
  2. <%= render 'subnav_item', link_text: 'Units', destination_path: emix_units_path %>
  3. <% end %>
  4. <%= generate_notice notice %>
  5. <%= generate_error flash[:error] %>
  6. <%= generate_errors @emix_unit, "prohibited this Unit from being saved:" %>
  7. <%= generate_edit_columns @emix_unit, EmixUnit,
  8. "New Unit",
  9. [:unit_type_id, nil, nil],
  10. "Create Unit"
  11. %>
  12. <%= link_to 'Back to Units', emix_units_path, class: 'btn btn-default' %>