From 0d85cd1bb2b23f52147523c1cbae8ac3bd7830ff Mon Sep 17 00:00:00 2001 From: Kotiuk Nazarii Date: Sat, 16 May 2015 17:11:44 +0300 Subject: [PATCH] profile feed bug --- accounts/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/models.py b/accounts/models.py index 1a68fa90..f083854c 100644 --- a/accounts/models.py +++ b/accounts/models.py @@ -343,7 +343,7 @@ class EventFilter(models.Model): def get_queryset(self): Exposition = get_model('exposition', 'Exposition') - qs = Exposition.objects.all() + qs = Exposition.enable.upcoming() themes = self.theme.all() tags = self.tag.all() countries = self.country.all()