diff options
-rw-r--r-- | pytask/templates/task/select_user.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pytask/templates/task/select_user.html b/pytask/templates/task/select_user.html new file mode 100644 index 0000000..8c4e3d2 --- /dev/null +++ b/pytask/templates/task/select_user.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} +{% block content %} + <a href="/task/claim/tid={{task.id}}">click here</a> to return to the claims page.<br /><br /> + Select a user to assign this task.<br /> + <form action="" method="POST"> + {{form.as_table}} + <input type="submit" value="Assign Task"> + </form> +{% endblock %} |