Root/
1 2 3 4 5 6 7 8 9 10 11 12 | {extends 'todo/base.html'} {block body} < form method = "POST" action = "{url 'Todo_Views::updateItem', array($item.id)}" > {$form.render_p} < p > < input type = "submit" value = "Edit this item" /> < a href = "{url 'Todo_Views::viewItem', array($item.id)}" >Cancel</ a > < br /> < a href = "{url 'Todo_Views::deleteItem', array($item.id)}" >Delete this item</ a > </ p > </ form > {/block} |