general03 / flask-autoindex

Generates index page like mod_autoindex
https://flask-autoindex.readthedocs.io
MIT License
114 stars 34 forks source link

Add support for ordering the sort column #43

Closed general03 closed 5 years ago

general03 commented 5 years ago

You can now ordering the sort column in render_autoindex method with the sort_by parameter like

idx.render_autoindex(sort_by='-modified')

You can put - or + front of column name

sublee commented 5 years ago

Thank you for the feature.