From: Jason Woofenden Date: Wed, 17 Dec 2008 21:02:51 +0000 (-0500) Subject: added in-testing section to admin display X-Git-Url: https://jasonwoof.com/gitweb/?p=contractor-progress.git;a=commitdiff_plain;h=d157a05acebd4fd6916ac37030fb037b8f1fffd4 added in-testing section to admin display --- 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 {