From f5ac1bf3aef2ccd960cd44ac84fa45f08a1ff278 Mon Sep 17 00:00:00 2001 From: Thayer Williams Date: Tue, 16 Mar 2010 11:39:27 -0700 Subject: Redesigned Dashboard * descriptive semantics * proper django cell cycling * link titles throughout Signed-off-by: Dan McGee --- templates/devel/index.html | 252 +++++++++++++++++++++++++++------------------ 1 file changed, 153 insertions(+), 99 deletions(-) (limited to 'templates') diff --git a/templates/devel/index.html b/templates/devel/index.html index acbe90bf..662e8246 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -6,107 +6,161 @@ {% endblock %} {% block content %} - {% if todos %} -
-

Package ToDo Lists

- - - - - - - {% for todo in todos %} - - - - - - {% endfor %} -
NameCreation DateDescription
{{ todo.name }}{{ todo.date_added }}{{ todo.description }}
-
-

- {% endif %} - -
-

Stats by Architecture

- - - - - - - {% for arch in arches %} - - - - - - {% endfor %} - -
-

-
-

Stats by Repository

- - - - - - - {% for repo in repos %} - - - - - - {% endfor %} - -
-

- -
-
Counts are by 'pkgbase' and not raw number of packages.
-

Stats by Maintainer

- - - - - - {% for maint in maintainers %} - - - - - {% endfor %} - -
-

- -
-

My Flagged Packages

-
- - Notify me when packages are flagged   - -
-
- - - - - - - - {% for pkg in flagged %} - - +
+ +

Developer Dashboard

+ + {% if todos %} +

Package Todo Lists

+ +
NameRepoVersionArch
- {{ pkg.pkgname }} -
+ + + + + + + + + {% for todo in todos %} + + + + + + {% endfor %} + +
NameCreation DateDescription
{{ todo.name }}{{ todo.date_added }}{{ todo.description }}
+ {% endif %} + +

My Flagged Packages

+ + + + + + + + + + + + {% for pkg in flagged %} + + - {% endfor %} -
NameRepoVersionArch
{{ pkg.pkgname }} {{ pkg.repo.name }} {{ pkg.pkgver }} {{ pkg.arch.name }}
+ {% empty %} + No flagged packages to display + {% endfor %} + + + +
+
+

+ +

+
+
+ +
+ +
+ +

+ Stats by Architecture (click to toggle)

+ + + + + + + + + + + {% for arch in arches %} + + + + + + {% endfor %} + +
Arch# Packages# Flagged
{{ arch.name }} + {{ arch.packages.count }} packages + {{ arch.packages.flagged.count }} packages
+ +
+ +
+ +

+ Stats by Repository (click to toggle)

+ + + + + + + + + + + {% for repo in repos %} + + + + + + {% endfor %} + +
Repository# Packages# Flagged
{{ repo.name }} + {{ repo.packages.count }} packages + {{ repo.packages.flagged.count }} packages
+ +
+ +
+ +

+ Stats by Maintainer (click to toggle)

+ + + + + + + + + + + {% for maint in maintainers %} + + + + + + {% endfor %} + +
Maintainer# Base Packages# Flagged
{{ maint.get_full_name }} + {{ maint.package_relations.count }} base packages + Flagged packages
+ +
{% endblock %} -- cgit v1.2.3-54-g00ecf