diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-21 22:52:41 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-21 22:52:41 -0400 |
commit | 20f2479b33bc548c4736cdc1ceffde6e3af3a31d (patch) | |
tree | fcc7416ee5cc9302235fb47b716298d254343433 /app/views/admin/quotes/edit.html.haml | |
parent | 41155441c9412ab0dba0b62f606cdef5488343f1 (diff) | |
download | thoughts-20f2479b33bc548c4736cdc1ceffde6e3af3a31d.tar.gz thoughts-20f2479b33bc548c4736cdc1ceffde6e3af3a31d.tar.bz2 thoughts-20f2479b33bc548c4736cdc1ceffde6e3af3a31d.zip |
Added quote editing
Diffstat (limited to 'app/views/admin/quotes/edit.html.haml')
-rw-r--r-- | app/views/admin/quotes/edit.html.haml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/admin/quotes/edit.html.haml b/app/views/admin/quotes/edit.html.haml new file mode 100644 index 0000000..47ff2d1 --- /dev/null +++ b/app/views/admin/quotes/edit.html.haml | |||
@@ -0,0 +1,3 @@ | |||
1 | - title "Editing Quote \##{@quote.id}" | ||
2 | = form_for @quote, url: admin_quote_url(@quote.id), html: { id: "entry-form" } do |f| | ||
3 | = render partial: "form", locals: { f: f } | ||