--- layout: demo_layout.njk --- ## Click To Edit The click to edit pattern provides a way to offer inline editing of all or part of a record without a page refresh. * This pattern starts with a UI that shows the details of a contact. The div has a button that will get the editing UI for the contact from `/contacts/1/edit` ```html
: Joe
: Blow
: joe@blow.com
``` * This returns a form that can be used to edit the contact ```html
``` * The form issues a `PUT` back to `/contacts/1`, following the usual REST-ful pattern. {% include demo_ui.html.liquid %}