tmtd/templates/task/task_page.html
2022-04-16 23:58:45 +02:00

31 lines
729 B
HTML

{% extends "base.html" %}
{% block content %}
{% include "navbar.html" %}
<a href="/create">Create issue</a><br><br>
<form action="/api/task/sort" method="post">
<label for="request">Task group</label>
<select name="request" id="request" style="width:auto">
<option value="Ideas">ideas</option>
<option value="Assigned">assigned</option>
<option value="InProgress">in progreess</option>
<option value="Done">done</option>
<input type="submit" value="Select">
</select>
</form>
<hr>
<!-- Some only selecting specific task code here, for smarter people then me -->
<ul>
{% for task in tasks %}
{% include "task/task.html" %}
{% endfor %}
</ul>
{% endblock content %}