From d157a05acebd4fd6916ac37030fb037b8f1fffd4 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Wed, 17 Dec 2008 16:02:51 -0500 Subject: [PATCH] added in-testing section to admin display --- index.html | 8 ++++++++ index.php | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 41b508a..73f1c77 100644 --- a/index.html +++ b/index.html @@ -47,6 +47,14 @@ + +

Finished but not tested

+ + + +
Total: ~task_total.money~
+ +

Finished tasks

diff --git a/index.php b/index.php index d5e0205..4258b8a 100644 --- a/index.php +++ b/index.php @@ -74,7 +74,8 @@ function _index_main() { # things with an edit link: task_summary('needs_fixing', 'where (state=%i || state=%i) || (client_id=%i && (state<%i || state=%i)) order by id desc', TASK_NEEDS_QUOTE, TASK_BUG, $client_id, TASK_DRAFT, TASK_NEEDS_CLARIFICATION); - task_summary('finished_unpaid', 'where state=%i && paid = 0 order by finished_at desc', TASK_FINISHED); + task_summary('finished_unpaid', 'where state=%i && paid=0 order by finished_at desc', TASK_FINISHED); + task_summary('finished_untested', 'where state=%i order by client_id, finished_at desc', TASK_NEEDS_TESTING); task_summary('finished_paid', 'where state=%i && paid = 1 order by finished_at desc limit 20', TASK_FINISHED); task_summary('queue', 'where state=%i order by client_id, ord desc', TASK_QUEUED); } else { -- 1.7.10.4