if not hasattr(request.user, 'cart'):
        c = Cart(user=request.user)
        c.save()