From ce4e047dd95f460df052a85a0438b86a654477bc Mon Sep 17 00:00:00 2001 From: Alicia FLOREZ Date: Wed, 15 May 2013 18:02:23 +0200 Subject: [PATCH] =?utf8?q?Affichage=20r=C3=A9ponses=20dans=20la=20vue=20Kanb?= =?utf8?q?an=20des=20th=C3=A8mes,=20commencement?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- faq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faq.py b/faq.py index 4b52d0a..9002157 100644 --- a/faq.py +++ b/faq.py @@ -10,7 +10,7 @@ class theme(osv.Model): for theme in self.browse(cr, uid, ids, context=context): res=[] for question in theme.questions: - res.append({'id': question.id, 'name': question.name}) + res.append({'id': question.id, 'name': question.name, 'reponses': question.answer_items}) result[theme.id] = res return result -- 1.7.10.4