1 {% extends
"base.html" %}
5 {% if perms.todolists.add_todolist %}
6 <div style=
"float:right">
7 <a href=
"/todo/add/">Add Todo List
</a>
10 <h2 class=
"title">Package ToDo lists
</h2>
11 <table class=
"results" width=
"100%">
14 <th>Creation Date
</th>
19 {% for list in lists %}
20 <tr class=
"{% cycle pkgr2,pkgr1 %}">
21 <td style=
"white-space:nowrap"><a href=
"/todo/{{ list.id }}/">{{ list.name }}
</a></td>
22 <td>{{ list.date_added }}
</td>
23 <td>{{ list.creator.get_full_name }}
</td>
24 <td>{{ list.description }}
</td>
25 <td>{% if list.complete %}
<span style=
"color:blue">Complete
</span>{% else %}
<span style=
"color:red">Incomplete
</span>{% endif %}
</td>