From f94a103975cf28f81858d673236e90b4bba2aa92 Mon Sep 17 00:00:00 2001 From: Sanjay B Date: Mon, 21 Apr 2014 15:37:30 +0530 Subject: [PATCH] fix bibliography info_dict issue --- itf/festival/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itf/festival/models.py b/itf/festival/models.py index b74d0c8..623c16c 100755 --- a/itf/festival/models.py +++ b/itf/festival/models.py @@ -280,7 +280,7 @@ class DocumentSubject(ItfModel): return { 'id': self.id, 'title': self.title, - 'documents': [d.info_dict() for d in Document.objects.filter(subject=self)] + 'documents': [d.info_dict(request) for d in Document.objects.filter(subject=self)] } class Document(ItfModel):