Re: Django CRUD questions

2012-04-25 Thread Kurtis Mullins
Check out ModelForms: https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#django.forms.ModelForm Note: I'm not sure which version of Django you are using but you may want to choose a different document-version respectively. Also, check out CreateView, UpdateView, and DeleteView for your

Re: Django CRUD questions

2012-04-25 Thread drewyan
Any useful resources or examples you can suggest would very much appreciated as well. On Wednesday, April 25, 2012 10:18:45 AM UTC-5, drewyan wrote: > > Hi all, > > I'm relatively new at designing web apps and I've been using Django to > set-up a CRUD type application. I recently figured out how

Django CRUD questions

2012-04-25 Thread drewyan
Hi all, I'm relatively new at designing web apps and I've been using Django to set-up a CRUD type application. I recently figured out how perform POST requests from the forms I set-up. I noticed that the data can be changed/updated through the Django admin site or through the Django API using