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'd like it to work:
urls are formated like: <data_type>/<CRUD>/<ID> id is optional. examples: /person/create : create a new person /place/update/2: update an existing person with id 2 /thing/delete/2: delete an existing person with id 2 i wonder if there are any examples floating around that talk about this pattern and cleans ways to implement it as far as the routing portion goes. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.