def get(self):
        questions = Question.all()
        responseSets = ResponseSet.all()

        values = {'questions': questions, 'responseSets': responseSets}
        self.response.out.write(template.render('templates/questionAdmin.html', values))