Re: urls.py best practices

2010-09-22 Thread Brian Bouterse
Have you looked at REST style URI's? With REST the action (aka verb) is never contained in the URL and is instead enumerated by the HTTP method type (ie: GET, PUT, POST, DELETE). This produces a much cleaner, more useful, more straight

urls.py best practices

2010-09-22 Thread jayfee
so i'm using django to do some "CRUD" type stuff, but i'm avoiding using the generic create_update methods because i've found my relationships and data types don't always fit neatly enough to work. anyway, the piece that i'm trying to tackle now is getting a clean routing system going. here's how i