regluit/context_processors.py

12 lines
451 B
Python
Raw Permalink Normal View History

def is_preview(request):
from django.conf import settings
return {'jquery_home': settings.JQUERY_HOME, 'jquery_ui_home': settings.JQUERY_UI_HOME, 'is_preview': settings.IS_PREVIEW, 'show_google_analytics': settings.SHOW_GOOGLE_ANALYTICS}
def count_unseen(request):
if request.user.is_anonymous():
count = 0
else:
from notification.models import Notice
2012-03-29 20:25:35 +00:00
count = Notice.objects.unseen_count_for(request.user)
return {'unseen_count': count}