Hi all

Does anybody know the reason why in django1.7 prepopulated fields is not 
changed only after user typed text there? Is that bug or what?

For example


class Post(models.Model):

    title = models.CharField('Title', max_length=128)
    url = models.SlugField('Url')

class PostAdmin(admin.ModelAdmin):

    prepopulated_fields = {"url": ("title",)}


When editing existing Post if user clicks on Title field then Url is 
overrided by value from Title. In django 1.6 url is not changed if user 
changes Title. That's why I think it is regression django bug.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b8817c82-85b5-4f24-b8b6-84b9a666fc94%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to