I've just started using Django-Filer, and I'm a bit lost as to how I can actually reference the images uploaded in the admin system.
I need to display a simple dynamic gallery on a single page, that can handle multiple albums. Each album is a new heading on the page, and all the images in that album are displayed under that heading. The rough structure I'm hoping to use in Django-Filer's admin system is:
- Root
- Image Gallery
- Album 1
- Image 1
- Image 2
- Image 3
- Album 2
- Album 1
- Another Gallery
- Image Gallery
So my question is, using a loop in the Template, how would I go about displaying each image, using the Album folder as a new heading?
A second related question is: how would I go about extending the Folder model to include a description field, without breaking any of its functionality?