20 lines
452 B
HTML
20 lines
452 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<span><h1>{% block title %} Edit Task {% endblock %}</h1></span>
|
|
<form method="post">
|
|
{{ form.csrf_token }}
|
|
<p>
|
|
{{ form.title.label }}
|
|
{{ form.title(size=20) }}
|
|
</p>
|
|
|
|
<p>
|
|
{{ form.description.label }}
|
|
</p>
|
|
{{ form.description(rows=5, cols=25) }}
|
|
<p>
|
|
<button class="btn btn-primary" type="submit">Edit Task</button>
|
|
</p>
|
|
</form>
|
|
{% endblock %} |