13 lines
207 B
Plaintext
13 lines
207 B
Plaintext
<% content_for :title, "Editing todo" %>
|
|
|
|
<h1>Editing todo</h1>
|
|
|
|
<%= render "form", todo: @todo %>
|
|
|
|
<br>
|
|
|
|
<div>
|
|
<%= link_to "Show this todo", @todo %> |
|
|
<%= link_to "Back to todos", todos_path %>
|
|
</div>
|