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.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to