No route matches {:action=>“edit”, :controller=>“events”} missing required keys: [:id]
i'm working on a Rails app and after trying to add a "Edit Event" link, I've been getting the following error. No route matches {:action=>"edit", :controller=>"events"} missing required keys: [:id] Down below is my index.html.haml .event_con %h1 Things you've done - @events_own.each do |event| .event_title = event.activity .event_rating %strong Rating : = event.rating / 10 .event_when %strong Started : = event.time.to_s(:short) .event_end %strong Ended : = event.timetwo.to_s(:short) .event_notes %strong Notes : = event.notes = link_to "Edit", edit_event_path And here is my Events controller