Hi, so...
I have a huge list ranked by various values (eg. scores)
So I grab the list ordered by these values:
players = Player.objects.order_by('-score', '-karma')
I would like to:
- Grab a player and get the neighbouring players
P1 score:123
P2 score:122
YOU! score:110
P3 score:90
P2 score:89
- Grab the position!
You are ranked #1234 for score
You are ranked #9876 for karma
Help would be very much appreciated. thanks :)