Django bbs 项目笔记


1.如果用户没登录访问聊天页面,跳转到登录页面:

if not request.user.is_authenticated():
    return  render(request,'login.html')
user_add = bbs_models.UserProfile.objects.all()
print 'user_add:',user_add
return  render(request,'webqq/chat.html',{
    'users':user_add
})