hovel / imagestore

Django gallery solution.
BSD 3-Clause "New" or "Revised" License
164 stars 72 forks source link

Ordering #32

Closed sandino closed 10 years ago

sandino commented 10 years ago

Hello,

There is an 'ordering' feature among anounced in README.rst but I couldn't find how to sort albums. By default they are sorted in ascending order, but I need descending to show new albums first.

Could you please help me to reverse the order?

UPDATE I'm sorry, I've just noticed the Order field on the Album form. But is there a settings parameter that lets order albums by date descending?

sandino commented 10 years ago

I solved the problem by extending Album model and setting default ordering = '-created'