Skip to content

Instantly share code, notes, and snippets.

@svschannak
Created March 23, 2013 14:33
Show Gist options
  • Save svschannak/5227917 to your computer and use it in GitHub Desktop.
Save svschannak/5227917 to your computer and use it in GitHub Desktop.
Django Jquery editable View
def editDataProfil(request):
model = get_model('bewerberportal', request.POST['model'])
setattr(model, request.POST['field'], request.POST['value'])
return HttpResponse("1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment