pytask/profile/templatetags/user_tags.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 28 Jan 2011 04:05:09 +0530
changeset 521 fe1914114802
parent 419 0bf7c07ef922
permissions -rw-r--r--
Content of the email about workshop slides.

from django import template

register = template.Library()

@register.filter
def notf_dsp(user):

    notf_cnt = user.notification_sent_to.filter(is_deleted=False,
                                                is_read=False).count()

    return u'Notifications(%s)'%notf_cnt if notf_cnt else u'Notifications'