Commit 3baf061a authored by Nirmal M.D.S's avatar Nirmal M.D.S

created assignTask.py

parent f1fa42ae
<!DOCTYPE html>
<html>
<head>
<title>Assigned Tasks</title>
</head>
<body>
<h1>Assigned Tasks</h1>
<table border="1">
<thead>
<tr>
<th>User ID</th>
<th>Task ID</th>
</tr>
</thead>
<tbody>
{% for task in tasks %}
<tr>
<td>{{ task[3] }}</td>
<td>{{ task[4] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment