7 lines
170 B
HTML
7 lines
170 B
HTML
<h2>Create Task for Project: {{ project.name }}</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Create Task</button>
|
|
</form>
|