From 94c3656bea0ff16b826f1adf34a3ada9084c7f8f Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Mon, 3 Jun 2019 15:19:28 +0100 Subject: Rewrite the task assignment flow With the demo in place, we're rewriting the task assignment flow such that users only get a task assigned when: 1. They finish the demo 2. They finish a task 3. They login again. This way we can better balance the datasets and we won't have datasets that don't get enough annotations because some users didn't finish tasks they were assigned. --- app/templates/admin/manage.html | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'app/templates') diff --git a/app/templates/admin/manage.html b/app/templates/admin/manage.html index e0c247a..5c10e02 100644 --- a/app/templates/admin/manage.html +++ b/app/templates/admin/manage.html @@ -2,17 +2,10 @@ {% import 'bootstrap/wtf.html' as wtf %} {% block app_content %} -

Manage Tasks Automatically

+

Manage Tasks

- {{ wtf.quick_form(form_auto, button_map={'assign': 'success'}) }} -
-
- -

Manage Tasks Manually

-
-
- {{ wtf.quick_form(form_manual, button_map={'assign': 'primary', 'delete': 'danger'}) }} + {{ wtf.quick_form(form, button_map={'assign': 'primary', 'delete': 'danger'}) }}

-- cgit v1.2.3