예제 #1
0
파일: signals.py 프로젝트: vforgione/bulbs2
def set_feature_type_slug(sender, instance, **kwargs):
    if instance.name:
        instance.slug = slugify(instance.name)
예제 #2
0
파일: signals.py 프로젝트: vforgione/bulbs2
def set_headline_slug(sender, instance, **kwargs):
    if instance.title:
        instance.slug = slugify(instance.title)
예제 #3
0
파일: signals.py 프로젝트: vforgione/bulbs2
def set_article_slug(sender, instance, **kwargs):
    if instance.title:
        instance.slug = slugify(instance.title)
예제 #4
0
파일: signals.py 프로젝트: vforgione/bulbs2
def set_tag_slug(sender, instance, **kwargs):
    if instance.name:
        instance.slug = slugify(instance.name)