Ejemplo n.º 1
0
    def get(self):

        template_values = {
            'topusers' : User.get_top10()
        }

        template = jinja_environment.get_template('halloffame.html')
        self.response.out.write(template.render(template_values))