blob: 232b56d27a143b7569ef23813afc58af52f540b1 (
plain)
1
2
3
4
5
6
7
8
|
{% extends 'base.html' %}
{% block content %}
Select a user to assign this task.<br />
<form action="" method="POST">
{{form.as_table}}
<input type="submit" value="Assign Task">
</form>
{% endblock %}
|