Re: prepopulated_fields is not changed only after user typed text there

2014-10-07 Thread Collin Anderson
It looks like it's supposed to only change the slug if the slug was blank when the page loaded. https://code.djangoproject.com/ticket/19082 -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

prepopulated_fields is not changed only after user typed text there

2014-10-07 Thread Vitaly
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