You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from django_messages.models import inbox_count_for
|
|
|
|
def inbox(request):
|
|
if request.user.is_authenticated():
|
|
return {'messages_inbox_count': inbox_count_for(request.user)}
|
|
else:
|
|
return {}
|
|
|