implemented create task view which needed task.py in events. added a method show_msg to views/user.py and used it in logoff view.
{% extends 'base.html' %}
{% block content %}
List of all the tasks:<br />
{% for task in task_list %}
<a href="/task/view/tid={{ task.id }}">{{ task.title }}</a><br />
{% endfor %}
{% endblock %}