This seems like the kind of thing Django makes simple, wondering if anyone has any experience with it.
I have a table of bands, some of whom are called 'The Geeks' (for example). I want them to appear alphabetically under 'G'.
I know I can do some fancy SQL to rewrite them on the fly and sort that way, but does Django offer anything built-in so I can keep my nice Band.objects.all() syntax and still filter on a custom sort?
I know I could change my data to include a has_prefix field or something and store the bandname as 'Geeks, The' or whatever, but I'd rather not touch the data itself if possible.
Any tips?