this could be part of a slideshows app
class SlideShowGallery(Model):
gallery = ForeignKey(Gallery)
timing = CharField()
class SlideShow(Model):
gallery = ForeignKey(SlideShowGallery)
audio = ForeignKey(Audio)
An example of timing might be just a string that has some syntax like
0:20,0:45,0:50,1:10,...
Where each item in the list is based on the audio timeline and when the
photos should rotate.
Original issue reported on code.google.com by mand...@gmail.com on 8 Apr 2009 at 10:48
Original issue reported on code.google.com by
mand...@gmail.com
on 8 Apr 2009 at 10:48