How do django views parse url queries? For example, suppose I have a view that lists all of the users at
localhost:8000/users/
If I wanted to add my own pagination feature, without django's built in one, how would I handle
localhost:8000/users/?page=10
or
localhost:8000/users/?id=526
I know that this defies that traditional sense of pretty url's, but I feel that it is necessary at some points.