Hi, im my model I have a field title as unique. Adding new records works fine. But when I want to edit it, I get problem. Here's the code: view:
article = Article.objects.select_related().get(pk=id) if request.method == 'POST': form = ArticleForm(request.POST, instance=article) if form.is_valid(): obj = form.save(commit=False) #if is sketch set status to 0 if form.cleaned_data['is_sketch'] == True: obj.status = 0 obj.save() form.save_m2m() The problem is, when I don't change the title - i get error that title field is already in database:/ Can I do something that let me save my edited object with that unique field not changed? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@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.