From 39a548fd2629f3b6383990264b2e331b3aea99fb Mon Sep 17 00:00:00 2001 From: eliott Date: Sat, 3 Nov 2007 03:45:10 -0400 Subject: Initial import for public release... Special Note Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd! --- templates/todolists/add.html | 25 +++++++++++++++++++++++++ templates/todolists/list.html | 30 ++++++++++++++++++++++++++++++ templates/todolists/view.html | 31 +++++++++++++++++++++++++++++++ 3 files changed, 86 insertions(+) create mode 100644 templates/todolists/add.html create mode 100644 templates/todolists/list.html create mode 100644 templates/todolists/view.html (limited to 'templates/todolists') diff --git a/templates/todolists/add.html b/templates/todolists/add.html new file mode 100644 index 00000000..a53637ce --- /dev/null +++ b/templates/todolists/add.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} + +{% block content %} +
+

Add ToDo List

+
+ + + + + + + + + + + + + +
Name:
Description:
List of Package Names:
(one per line)
+ +
+
+
+{% endblock %} diff --git a/templates/todolists/list.html b/templates/todolists/list.html new file mode 100644 index 00000000..0e659f93 --- /dev/null +++ b/templates/todolists/list.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} + +{% block content %} +
+ {% if perms.todolists.add_todolist %} +
+ Add Todo List +
+ {% endif %} +

Package ToDo lists

+ + + + + + + + + {% for list in lists %} + + + + + + + + {% endfor %} +
NameCreation DateCreatorDescriptionStatus
{{ list.name }}{{ list.date_added }}{{ list.creator.get_full_name }}{{ list.description }}{% if list.complete %}Complete{% else %}Incomplete{% endif %}
+
+{% endblock %} diff --git a/templates/todolists/view.html b/templates/todolists/view.html new file mode 100644 index 00000000..89a07a99 --- /dev/null +++ b/templates/todolists/view.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% block content %} +
+

ToDo List: {{ list.name }}

+ + + + + + + + + {% for pkg in pkgs %} + + + + + + + + {% endfor %} +
IDRepoNameMaintainerStatus
{{ pkg.pkg.id }}{{ pkg.pkg.repo.name }}{{ pkg.pkg.pkgname }}{{ pkg.pkg.maintainer.get_full_name }} + {% if pkg.complete %} + Complete + {% else %} + Incomplete + {% endif %} +
+
+{% endblock %} -- cgit v1.2.3-55-g3dc8