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/devel/index.html | 75 ++++++++++++++++++++++++++++++++++++++++++++ templates/devel/profile.html | 32 +++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 templates/devel/index.html create mode 100644 templates/devel/profile.html (limited to 'templates/devel') diff --git a/templates/devel/index.html b/templates/devel/index.html new file mode 100644 index 0000000..2617de9 --- /dev/null +++ b/templates/devel/index.html @@ -0,0 +1,75 @@ +{% extends "base.html" %} + +{% block content %} + {% if todos %} +
+

Package ToDo Lists

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

+ {% endif %} + +
+

Flagged Package Stats

+ + + + + + + {% for maint in stats %} + + + + + + {% endfor %} +
Maintainer# Package# Flagged
{{ maint.0.get_full_name }}{{ maint.1 }} packages{{ maint.2 }} packages
+
+

+ +
+

Package Maintenance

+
+ + + + +
+ {% if maint %} + My Packages
+ {% endif %} + Orphan Packages
+
+ Package Maintainer's Guide
+
+ {% if pkgs %} +

My Flagged Packages:

+
    +
  • + Notify me when packages are flagged +     + +
  • +
+ + {% endif %} +
+{% endblock %} diff --git a/templates/devel/profile.html b/templates/devel/profile.html new file mode 100644 index 0000000..6083735 --- /dev/null +++ b/templates/devel/profile.html @@ -0,0 +1,32 @@ +{% load validation %} +{% extends "base.html" %} + +{% block content %} +
+

Developer Profile

+ {% if errors %} + {% print_errors errors %} + {% endif %} +
+ + + + + + + + + + + + + + + + +
Username:{{ user.username }}
Email Address:
New Password:
Confirm Password:
+ +
+
+
+{% endblock %} -- cgit v1.2.3-24-g4f1b