taskapp/utilities/user.py
author Nishanth Amuluru <nishanth@fossee.in>
Thu, 06 Jan 2011 12:08:36 +0530
changeset 226 b4a3ec34c061
parent 144 581ad20b8c39
permissions -rw-r--r--
the upload of attachments works correctly now

"""
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,is_read=False)

    user.unread_notifications = unread_notifications
    user.unread_requests = unread_requests

    return user