LAB_DJANGO_ORM-1

Using what you learned , Create a Blog website .

  • Users can read the blog posts.
  • Users can Add a blog post.

Create model Post , it should have the following attributes :

  • Title : char field
  • Content : text field
  • is_published : boolean field
  • publish_date : datetime field