Customizing Slug Field for Post Model | Django CMS Building By shriekdj
So In Previous Post I Created The Simple Django Model of the BlogPost Which Stores Data Like Given Below.
class Post(models.Model):
title = models.CharField(verbose_name='title', max_length=255, null=False)
content = models.TextField(verbose_...
shriekdj.hashnode.dev2 min read