summaryrefslogtreecommitdiff
path: root/pytask/templates/task/addreviewer.html
diff options
context:
space:
mode:
Diffstat (limited to 'pytask/templates/task/addreviewer.html')
-rw-r--r--pytask/templates/task/addreviewer.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/pytask/templates/task/addreviewer.html b/pytask/templates/task/addreviewer.html
new file mode 100644
index 0000000..b497390
--- /dev/null
+++ b/pytask/templates/task/addreviewer.html
@@ -0,0 +1,9 @@
+{% extends 'base.html' %}
+{% block content %}
+ Select a user as a reviewer for this task.<br />
+ <form action="" method="POST">
+ {% csrf_token %}
+ {{form.as_table}}
+ <input type="submit" value="Select">
+ </form>
+{% endblock %}