diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2023-10-08 02:07:14 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-08 02:07:14 -0600 |
commit | 4d2a0981a58f4c150972b7aca1c62d00f337405e (patch) | |
tree | b7d4683cf048699a6a52056cd0afe0eef1a8ce25 /templates/tasks.html | |
parent | 990e5f6b211463ea27ce1ce159c7ffb7e4546c16 (diff) | |
parent | a8ffa7a710e09c471d1b1b101bf833d5369ccaf5 (diff) |
Merge pull request #3 from navanchauhan/oct-8
select car and generate tasklist
Diffstat (limited to 'templates/tasks.html')
-rw-r--r-- | templates/tasks.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/tasks.html b/templates/tasks.html new file mode 100644 index 0000000..2432aad --- /dev/null +++ b/templates/tasks.html @@ -0,0 +1,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 %}
\ No newline at end of file |