From f2147cdeec3daafbdbbf3172fd4cc94ef24ee851 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 30 Nov 2010 11:42:44 -0600 Subject: Make dev dashboard columns a bit prettier We don't need to force widths on the upper tables, and ensure the todo list description can wrap if it is a long one. Signed-off-by: Dan McGee --- templates/devel/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'templates') diff --git a/templates/devel/index.html b/templates/devel/index.html index baad92e4..cb9b92ae 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -11,7 +11,7 @@ - + @@ -42,7 +42,7 @@ - + @@ -78,10 +78,10 @@ {% for todo in todos %} - - + {% empty %} -- cgit v1.2.3-2-g168b From 1b826f3e12b66d9e2d3a90b1dddf5170ab48dc12 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 3 Dec 2010 19:38:50 -0600 Subject: Display flag date in package search and allow sorting This exposes something we added a while back, and has been shown elsewhere, but will now be available for everyone to see. Also change the default search order to just be by pkgname; we don't need to do a multi-column search by default. Signed-off-by: Dan McGee --- templates/packages/search.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'templates') diff --git a/templates/packages/search.html b/templates/packages/search.html index c3f70fa6..4a779aa0 100644 --- a/templates/packages/search.html +++ b/templates/packages/search.html @@ -84,6 +84,8 @@ + @@ -103,6 +105,7 @@ {% endif %} + {% endfor %} -- cgit v1.2.3-2-g168b 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(-) (limited to 'templates') 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}}

-
NameName Repo Version Arch
Todo ListNameName Repo Arch Maintainer(s)
{{ todo.name }} {{ todo.date_added }}{{ todo.description|safe }}{{ todo.description|safe }}
No package todo lists to display
Description Last UpdatedFlag Date
{{ pkg.pkgdesc }} {{ pkg.last_update|date }}{{ pkg.flag_date|date }}
- - - - - - - - - - - {% 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 %}