taskapp/utilities/user.py
author nishanth
Sun, 28 Feb 2010 14:44:10 +0530
changeset 143 796ff9e279a8
parent 137 e56b95298254
child 144 581ad20b8c39
permissions -rw-r--r--
now if a user accepts to be a mentor, all his pending reqs will be made invalid.

"""
A collection of utility functions for user.
"""

def get_user(user):
    """ get the no of unread requests and notifications and add them as properties for user.
    """

    unread_notifications = user.notification_sent_to.filter(is_read=False,is_deleted=False)
    unread_requests = user.request_sent_to.filter(is_valid=True,is_replied=False)

    user.unread_notifications = unread_notifications
    user.unread_requests = unread_requests

    return user