Creating Custom CMS In Django | Django CMS Building By shriekdj

creating-custom-cms-in-django-|-django-cms-building-by-shriekdj

So I Thought about creating the Custom CMS and Update it’s feature day by day as per need.

For Example Firstly I just added blog app in django project named dj_admin.
And Created Very Simple Model LIke

from django.db import models

# Create your models here.
class Post(models.Model):
    title = models.CharField(verbose_name='title', max_length=255, null=False)
    content = models.TextField(verbose_name='content', null=False, blank=True)

after some time I added 3 fields like created_at, published_at and updated_at where created_at is mandatory and auto created Model Then updated like this.

from django.db import models

# Create your models here.
class Post(models.Model):
    title = models.CharField(verbose_name='title', max_length=255, null=False)
    content = models.TextField(verbose_name='content', null=False, blank=True)
    created_on = models.DateTimeField(auto_now=True, auto_created=True, null=False, blank=False)
    published_on = models.DateTimeField(null=True)
    updated_on = models.DateTimeField(null=True)

I Created The GitHub Repo for the Project And It’s Django Project Code Will Be Under src directory.

shriekdj_cms build in django

I will be adding features to it day by day to make it blog.

Total
1
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
flutter-multiplatform-navigation-sidebar-/-drawer-widget

Flutter multiplatform navigation sidebar / drawer widget

Next Post
how-to-use-graphql-and-react-query-with-graphql-code-generator-(based-on-next.js)

How to use GraphQL and React Query with GraphQL Code Generator (based on Next.Js)

Related Posts