def GET(self, slug):
   user = User.get(slug=slug)
   return render("user", user=user, you=get_you())
 def GET(self):
   you = get_you()
   games = Game.all()
   users = User.all()
   return render("index", games=games, users=users, you=get_you())