I am trying to create a SlugField in Django.

I created this simple model:

from django.db import models

class test(models.Model):
    q = models.CharField(max_length=30)
    s = models.SlugField()

I then do this:

>>> from mysite.books.models import test
>>> t=test(q="aa a a a", s="b b b b")
>>> t.s
'b b b b'
>>> t.save()
>>> t.s
'b b b b'
>>>

I was expecting b-b-b-b

link|improve this question

31% accept rate
feedback

6 Answers

You will need use the slugify function.

>>> from django.template.defaultfilters import slugify
>>> slugify("b b b b")
u'b-b-b-b'
>>>

So this should work, but I have not tested it yet:

class test(models.Model):
    q = models.CharField(max_length=30)
    s = models.SlugField()

    def save(self, *args, **kwargs):
        self.s = slugify(self.q)
        super(test, self).save(*args, **kwargs)
link|improve this answer
shy have a special model type? why not just slugify CharFields? – Johnd May 8 '09 at 3:31
7  
SlugFields set db_index=True by default, and also use a form field by default that has a validation regex to require valid slugs (if represented in a ModelForm or in the admin). You can do those things manually with a CharField if you prefer, it just makes the intention of your code less clear. Also, don't forget the prepopulate_fields ModelAdmin setting, if you want JS-based auto-prepopulate in the admin. – Carl Meyer May 8 '09 at 14:22
3  
As Dingle said below in his answer, you'll need to replace def save(self): with def save(self, *args, **kwargs): in order to avoid errors from being thrown when writing something like test.objects.create(q="blah blah blah"). – Liam Mar 24 '10 at 17:11
2  
Beware that this code will update the slug each saves. your url will change, and "Cool URIs don't change" w3.org/Provider/Style/URI.html – dzen Jun 3 '11 at 9:37
Why not make the slug optional and override save() to create slug automatically from title if current slug is empty? if self.s == '': self.s = slugify(self.q) – arifwn Dec 10 '11 at 14:32
feedback

A small correction to Thepeer's answer: To override save() function in model classes, better add arguments to it:

def save(self, *args, **kwargs):
    if not self.id:
        self.s = slugify(self.q)

    super(test, self).save(*args, **kwargs)

Otherwise, test.objects.create(q="blah blah blah") will result in a force_insert error (unexpected argument).

link|improve this answer
You're absolutely right! Thanks for the correction. – thepeer Nov 27 '09 at 10:43
1  
One further very minor thing to add to thepeer's answer: I would make that last line return super(test, self).save(*args, **kwargs). I think this method returns None, and I don't know of any plans to change that, but it does no harm to return what the superclass's method does in case it changes sometime in the future. – Duncan Parkes Aug 23 '11 at 21:16
feedback

In most cases the slug should not change, so you really only want to calculate it on first save:

class test(models.Model):
    q = models.CharField(max_length=30)
    s = models.SlugField(editable=False) # hide from admin

    def save(self):
        if not self.id:
            self.s = slugify(self.q)

        super(test, self).save()
link|improve this answer
should accept *args and **kwargs – skyl Dec 3 '10 at 16:16
feedback

If you're using the admin interface to add new items of your model, you can set up a ModelAdmin for it in your admin.py, which automates the entering of a slug:

class ClientAdmin(admin.ModelAdmin):
    prepopulated_fields = {'slug': ('name',)}
admin.site.register(Client, ClientAdmin)

Here, when the user enters a value in the admin form for the name field, the slug will be automatically populated with the correct slugified name.

link|improve this answer
feedback

If you don't want to set the slugfield to Not be editable, then I believe you'll want to set the Null and Blank properties to False. Otherwise you'll get an error when trying to save in Admin.

So a modification to the above example would be::

class test(models.Model):
    q = models.CharField(max_length=30)
    s = models.SlugField(null=True, blank=True) # Allow blank submission in admin.

    def save(self):
        if not self.id:
            self.s = slugify(self.q)

        super(test, self).save()
link|improve this answer
or you could use editable=False :P – bx2 Feb 9 '11 at 19:17
feedback

Use prepopulated_fields in your admin class:

class ArticleAdmin(admin.ModelAdmin):
    prepopulated_fields = {"slug": ("title",)}

admin.site.register(Article, ArticleAdmin)

http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.prepopulated_fields

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.