Good work! Everything is solid except for what is mentioned below. So if it's not below, you are good. Here are my notes on your code:
##Views##
- When I go to the edit form at
http://localhost:9393/entries/:id/edit
thebody
of the existingentry
does not show in the correspondinginput
field. It looks like this is because you are utilizing atextarea
tag in your entries/edit view. Heads up: It doesn't look like thetextarea
tag supports thevalue
attribute, according to the docs. That would explain why thebody
doesn't show on theedit
form. You will need to fix this, since the user will think theentry
doesn't have abody
at all (which is not true). - Watch out: Your
entries/new
view cannot handle a request from a user w