From d37b15327690f0f436fc25ac856d20df73447c7d Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 7 Dec 2010 12:14:30 -0600 Subject: Update public todo list template Add a TOC as suggested in FS#20720. Fix closing tag span/a mixup that snuck in from the private developer template, and finally use a different div box for each todo list which should make them stand out better. Signed-off-by: Dan McGee --- templates/todolists/public_list.html | 92 ++++++++++++++++++++++-------------- 1 file changed, 56 insertions(+), 36 deletions(-) diff --git a/templates/todolists/public_list.html b/templates/todolists/public_list.html index fe5ffb5d..d84a548f 100644 --- a/templates/todolists/public_list.html +++ b/templates/todolists/public_list.html @@ -5,44 +5,64 @@ {% block content %}

Developer Todo Lists

-
- {% for list in todo_lists %} -

{{list.name}}

-
-

{{list.description|safe|linebreaks}}

- - - - - - - - - - - - {% for pkg in list.packages %} - - - - - - - - {% endfor %} - -
NameArchRepoMaintainerStatus
{{ pkg.pkg.pkgname }}{{ pkg.pkg.arch.name }}{{ pkg.pkg.repo.name|capfirst }}{{ pkg.pkg.maintainers|join:', ' }} - {% if pkg.complete %} - Complete - {% else %} - Incomplete - {% endif %} -
-
- {% endfor %} +
+

Open Developer Todo Lists

+

Todo lists are used by the developers when a rebuild of a set of + packages is needed. This is common when a library has an .so version + bump; during a toolchain rebuild, or a general cleanup of packages in + the repositories. The progress can be tracked here. Only todo lists + with currently incomplete packages are shown.

+ {% if todo_lists %}{% else %} +

There are currently no incomplete developer todo lists.

+ {% endif %}
+{% if todo_lists %} +
+ {% for list in todo_lists %} +
+ +

{{ list.name }}

+
+
{{ list.description|safe|linebreaks }}
+ + + + + + + + + + + + {% for pkg in list.packages %} + + + + + + + + {% endfor %} + +
NameArchRepoMaintainerStatus
{{ pkg.pkg.pkgname }}{{ pkg.pkg.arch.name }}{{ pkg.pkg.repo.name|capfirst }}{{ pkg.pkg.maintainers|join:', ' }} + {% if pkg.complete %} + Complete + {% else %} + Incomplete + {% endif %} +
+
+
+ {% endfor %} +
+{% endif %} {% load cdn %}{% jquery %}