aboutsummaryrefslogtreecommitdiff
path: root/templates/tasks.html
blob: 2432aad55cf3c330cc45b144a8297831817cd5f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% for task in to_do %}
<div class="relative flex items-start">
    <div class="flex h-6 items-center">
      <input id="comments" aria-describedby="comments-description" name="comments" type="checkbox" class="h-4 w-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-600">
    </div>
    <div class="ml-3 text-sm leading-6">
      <label for="comments" class="font-medium text-gray-900">Task {{loop.index}}</label>
      <p id="comments-description" class="text-gray-500">{{task}}</p>
    </div>
  </div>
{% endfor %}