now claims are read from notifications. we can ditchax claims model now.
{% extends 'base.html' %}
{% block content %}
List of all the tasks:<ul>
{% for task in task_list %}
<li><a href="/task/view/tid={{ task.id }}">{{ task.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}