@property
    def active_quizzes(self):
        # Active public quizzes
        through = UserToQuiz.objects.filter(user=self)
        active_quizzes = [t for t in through \