Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 | {extends 'todo/base.html'} {block body} < h2 >{$item.item}</ h2 > < p >Status: {if $item.completed}Done{else}Todo{/if}.</ p > < p >List: < a href = "{url 'Todo_Views::viewList', array($list.id)}" >{$list.name}</ a >.</ p > < p >< a href = "{url 'Todo_Views::updateItem', array($item.id)}" >Update this item</ a > | < a href = "{url 'Todo_Views::addItem', array($list.id)}" >Create a new item</ a > </ p > {/block} |