1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | def create_c(request):
c = {}
c.update(csrf(request))
if request.user.is_authenticated():
if request.user.username in admin_list:
c['admin_posts'] = True
if request.user.username in admin_list:
c['admin_channels'] = True
if request.user.username in admin_list:
c['admin_users'] = True
if Invite.objects.filter(inviter=request.user, invited__isnull=True).count() > 0:
c['has_invites'] = True
if check_inbox_alert(request):
c['inbox_alert'] = True
c['time'] = ''
return c
|
More like this
- Url filter middleware by limodou 6 years, 2 months ago
- Flash Message Template Tag by rtconner 5 years, 10 months ago
- Decorating class-based views by lqc 1 year, 3 months ago
- Validator for data by limodou 6 years, 2 months ago
- testdata tag for templates by showell 4 years ago
Comments