2m2d/templates/home.html

18 lines
439 B
HTML

{% extends 'base.html' %}
{% block content %}
<a href="/tasks/create">
<button>+ Create Task</button>
</a>
{% for task in tasks %}
<div class="card">
<h3>{{task.title}}</h3>
<p>{{task.status}}</p>
<div class="text-align-right">
<a href="/tasks/{{task.id}}"> <!-- TODO: make this actually use the task ID -->
<button>More Info &raquo;</button>
</a>
</div>
</div>
{% endfor %}
{% endblock %}