I have an index page that builds a table, and I am trying to allow users to edit line\'s in the table. I am trying to do this in the most basic way possible - no javascript
For rails 5, try using data: { turbolinks: false } inside any links to the page containing the form.
data: { turbolinks: false }
E.g. <%= link_to "Get in Touch", 'contact', data: { turbolinks: false } %>
<%= link_to "Get in Touch", 'contact', data: { turbolinks: false } %>