aboutsummaryrefslogtreecommitdiff
path: root/app/admin/forms.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-05-30 13:29:31 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-05-30 13:29:31 +0100
commitda15e439e64c8314825ad5f28073fbcbd436946f (patch)
tree62b40c9be838316fc1c0e1a5372d7bf8fbdc496b /app/admin/forms.py
parentAdd database migration for cp_index (diff)
downloadAnnotateChange-da15e439e64c8314825ad5f28073fbcbd436946f.tar.gz
AnnotateChange-da15e439e64c8314825ad5f28073fbcbd436946f.zip
Initial version of demo
This commit introduces the demo functionality. The task assignment has been removed at the moment, as this will be changed in a future commit.
Diffstat (limited to 'app/admin/forms.py')
-rw-r--r--app/admin/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/admin/forms.py b/app/admin/forms.py
index 1ac9333..bd1dce6 100644
--- a/app/admin/forms.py
+++ b/app/admin/forms.py
@@ -22,7 +22,7 @@ class AdminAutoAssignForm(FlaskForm):
num_per_dataset = IntegerField(
"Tasks per Dataset", [NumberRange(min=1, max=20)], default=10
)
- assign = SubmitField("Assign")
+ submit = SubmitField("Submit")
class AdminManageTaskForm(FlaskForm):