Whoops just an alternative implementation of UpdateView
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | class ModelFormView(FormView):
""" Use (?P<id>[\-0-9]*) urls.py lookups to populate form instance """
lookups = ['id', ]
def get_form_kwargs(self):
""" Override to add instance """
self.get_instance()
kwargs = {'initial': self.get_initial()}
if self.request.method in ('POST', 'PUT'):
kwargs.update({
'instance': self.instance,
'data': self.request.POST,
'files': self.request.FILES,
})
return kwargs
def get_instance(self):
""" Add in self.lookups list of attributes to search for instance """
model = self.get_form_class()._meta.model
for lookup in self.lookups:
look = self.kwargs.get(lookup, '')
if look:
try:
self.instance = model.objects.get(*((lookup, look),))
self.pk = self.instance.pk
return self.pk
except ObjectDoesNotExist:
self.instance = None
return 0
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 9 months, 3 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months ago
- Serializer factory with Django Rest Framework by julio 1 year, 4 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 5 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.