create_c

 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

  1. Url filter middleware by limodou 6 years, 2 months ago
  2. Flash Message Template Tag by rtconner 5 years, 10 months ago
  3. Decorating class-based views by lqc 1 year, 3 months ago
  4. Validator for data by limodou 6 years, 2 months ago
  5. testdata tag for templates by showell 4 years ago

Comments

(Forgotten your password?)