edit.html.erb 707 B

123456789101112131415161718192021222324
  1. <%= generate_notice notice %>
  2. <%= generate_error flash[:error] %>
  3. <%= generate_errors @resource, "prohibited this VEN from being saved:" %>
  4. <%= generate_edit_columns @resource, Resource,
  5. "Resource Identification",
  6. [:name, :ven_id, :resource_type_id],
  7. "Update Identification"
  8. %>
  9. <%= generate_edit_columns @resource, Resource,
  10. "Location",
  11. [:address, :state, :zip, :geospatial_location, :grid_electrical_coordinates, nil],
  12. "Update Identification"
  13. %>
  14. <%= generate_edit_columns @resource, Resource,
  15. "Capabilities",
  16. [:shed_capability, :ramp_period, :recovery_period],
  17. "Update Capabilities"
  18. %>
  19. <%= link_to "Back to VEN", ven_path(@resource.ven), class: 'btn btn-default' %>