def save(self, *args, **kwargs):
"""
Update the display title with the title, if blank
"""
if self.display_title in [None, '']:
self.display_title = self.title
if self.slug in [None, '']:
self.slug = slugify(self.title)
super(Project, self).save(*args, **kwargs)
评论列表
文章目录