JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added in-testing section to admin display
[contractor-progress.git] / index.php
index d5e0205..4258b8a 100644 (file)
--- 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 {