From 8b132b029eeaa41160ddcfbc682e44daa1784e6f Mon Sep 17 00:00:00 2001 From: Sanj Date: Sat, 10 Sep 2011 08:10:44 +0530 Subject: [PATCH] participants listing --- itf/festival/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/itf/festival/models.py b/itf/festival/models.py index 6ab1894..fce1f5c 100644 --- a/itf/festival/models.py +++ b/itf/festival/models.py @@ -83,12 +83,13 @@ class Participant(ItfModel): def list_dict(self): return { 'id': self.id, - 'title': self.title + 'title': self.name } def info_dict(self): return { 'id': self.id, + 'name': self.name, 'title': self.title, 'short_bio': self.short_bio, }