temp fix for sets

This commit is contained in:
j 2013-10-22 19:17:12 +00:00
parent b46aa6625f
commit 808689c0c3

View file

@ -996,7 +996,9 @@ class Item(models.Model):
def users_with_files(self):
return User.objects.filter(
volumes__files__file__item=self
).order_by('-profile__level', 'date_joined').distinct()
).order_by('date_joined').distinct()
#FIXME: profile not showing up here
#).order_by('-profile__level', 'date_joined').distinct()
def sets(self):
sets = []