Django

Django in-url paging and reverse, url, permalink, etc

Here is a quick note that my coworker George discovered that I went around and changed in some of our development code…
Django’s url structure allows you to do your paging inline (bla.com/view/3/ instead of bla.com/view?page=3) which is better for url based page cache retrieval (at least in rails) as well as search spider optimization… [...]