@property
    def inactive_quizzes(self):
        through = UserToQuiz.objects.filter(user=self)
        inactive_quizzes = [t for t in through \
        if t.quiz.is_inactive() and t.quiz.is_public()]