From 37d97cfff830b4dcce5a74bb95d0b203a2e865e9 Mon Sep 17 00:00:00 2001 From: eliott Date: Sat, 29 Mar 2008 16:34:44 -0700 Subject: Added column sorting via javascript. --- templates/todolists/list.html | 5 ++++- templates/todolists/view.html | 35 +++++++++++++++++++++++++++++++++-- 2 files changed, 37 insertions(+), 3 deletions(-) (limited to 'templates/todolists') diff --git a/templates/todolists/list.html b/templates/todolists/list.html index 980328ab..714e1139 100644 --- a/templates/todolists/list.html +++ b/templates/todolists/list.html @@ -1,5 +1,4 @@ {% extends "base.html" %} - {% block content %}
{% if perms.todolists.add_todolist %} @@ -9,6 +8,7 @@ {% endif %}

Package ToDo lists

+ @@ -16,6 +16,8 @@

Package ToDo lists

+ + {% for list in lists %} @@ -25,6 +27,7 @@

Package ToDo lists

{% endfor %} +
Name Creation Date Description Status
{{ list.name }} {% if list.complete %}Complete{% else %}Incomplete{% endif %}
{% endblock %} diff --git a/templates/todolists/view.html b/templates/todolists/view.html index 7cd58dc8..692999db 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -1,9 +1,37 @@ {% extends "base.html" %} - +{% block head %} + + + + +{% endblock %} {% block content %}

ToDo List: {{ list.name }}

- +
+ @@ -11,6 +39,8 @@

ToDo List: {{ list.name }}

+ + {% for pkg in pkgs %} @@ -26,6 +56,7 @@

ToDo List: {{ list.name }}

{% endfor %} +
ID Repo Maintainer Status
{{ pkg.pkg.id }}
{% endblock %} -- cgit v1.2.3-54-g00ecf