Ejemplo n.º 1
0
 def get(self):
     dictionary = int(self.request.GET.get('dict', 0))
     words = Word.all_by_dictionary(dictionary).order('original').fetch(100)
     html = render('list.html', {'words': words})
     self.response.out.write(html)