You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
437 B

{% extends 'base.html' %}
{% load static %}
{% block content %}
<center><h1>Tasks</h1></center>
<table class="table table-striped">
<tr>
<td>Status</td>
<td>Name</td>
<td>Description</td>
</tr>
{% for task in tasks %}
<tr>
<td>{{ task.status }}</td>
<td>{{ task.name }}</td>
<td>{{ task.description | truncatewords:10 }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}