Sort by age rating (integer not string)

The default sorting is by string. So the following list will be sorted like that:
de/0
de/10
de/12

de/6
de/8

Would be great to sort it by integer so that “6” follows “0”. The “de” is anyway omitted in the list and is not shown.

Best regards

I suppose the tricky part about that suggestion is that there’s no common schema for content ratings. This might fit for Germany… but what about the rating systems of other countries which include non-integer components (e.g. G, PG, R, N in the USA)?

For that to work you’ll need an international mapping table to specify the actual sequence (though not all ratings are part of an actual sequence). Which brings you to the next dilemma on how to deal with users deviating from the naming schema for content ratings (e.g. using FSK 0 instead of de/0).

Just use a filter (optionally with an OR operator) instead of a sort.

1 Like