Created
March 22, 2011 16:49
-
-
Save danharper/881550 to your computer and use it in GitHub Desktop.
Edit View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% if @note %> | |
<form action="/<%= @note.id %>" method="post" id="edit"> | |
<input type="hidden" name="_method" value="put"> | |
<textarea name="content"><%=h @note.content %></textarea> | |
<input type="checkbox" name="complete" <%= "checked" if @note.complete %>> | |
<input type="submit"> | |
</form> | |
<p><a href="/<%= @note.id %>/delete">Delete</a></p> | |
<% else %> | |
<p>Note not found.</p> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment