On Tue, Jul 14, 2009 at 3:56 PM, Sonal Breed <sonal.br...@gmail.com> wrote:
> > Hi all, > > I am little confused about the working of slug fields. > I have a model: > class Story(models.Model): > slug = models.SlugField(unique_for_date = 'date_created', > help_text="suggested values automatically generated > from title" > title = models.CharField(max_length=50, blank=False) > story = models.CharField(max_length=500, blank=False) > > In admin.py > class StoryAdmin(admin.ModelAdmin): > prepopulated_fields = {"slug": ("title",)} > > admin.site.register(Story, StoryAdmin) > > Now, should I expect the slug field to get automatically populated > with the value of title, each time an entry is saved. What is the > expected behaviour of slug? Currently, I cannot see the value of title > in slug field in admin site. > > Can anybody throw some light on this? > > Thanks in advance, > Sonal. > > > The slug will only be automatically populated when you are adding records from the admin. Any other method of entry will not have the slug field automatically populated. Alex -- "I disapprove of what you say, but I will defend to the death your right to say it." -- Voltaire "The people's good is the highest law." -- Cicero "Code can always be simpler than you think, but never as simple as you want" -- Me --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---