``` #models.py from slugify import slugify, smart_text title = models.CharField(_('file name'), max_length=255) slug = slugify(_('url'), max_length=250, unique=True) summary = models.TextField(_('summary')) ``` As a newbie, having tried many but without success, any working example ?