Fix synch between thumbs and title

This commit is contained in:
2015-05-07 16:17:36 +02:00
parent 222c730b39
commit 0ea3c05f22
+4 -4
View File
@@ -114,8 +114,8 @@ class JM2L_Year(Base):
@property @property
def DocLinks(self): def DocLinks(self):
from .upload import MediaPath from .upload import MediaPath
return zip( MediaPath().get_list('presse', self.year_uid, 'Other'), return zip( sorted(MediaPath().get_list('presse', self.year_uid, 'Other')),
MediaPath().get_thumb('presse', self.year_uid, 'Other') sorted(MediaPath().get_thumb('presse', self.year_uid, 'Other'))
) )
class User(Base): class User(Base):
@@ -282,8 +282,8 @@ class Tiers(Base):
@property @property
def DocLinks(self): def DocLinks(self):
from .upload import MediaPath from .upload import MediaPath
return zip( MediaPath().get_list('tiers', self.uid, 'Other'), return zip( sorted( MediaPath().get_list('tiers', self.uid, 'Other') ),
MediaPath().get_thumb('tiers', self.uid, 'Other') sorted( MediaPath().get_thumb('tiers', self.uid, 'Other') )
) )
@property @property