I have a Django model with a large number of fields and 20000+ table rows. To facilitate human readable URLs and the ability to break down the large list into arbitrary sub
I agree with Adam, but I think the pattern in urls.py should be:
... r'^browse/(?P.+)/$' ...
The '\w' will only match 'word' characters, but the '.' will match anything.