In this video we'll continue on with our Django User Authentication. Right now we can register and login to the blog, but the blog doesn't actually change based on that.
We need the blog to recognize that a user is logged in, and show different content accordingly. So if a user is logged in, they should be able to logout, edit posts, delete posts, and add new posts.
If a user isn't logged in, they shouldn't be able to add posts, edit posts, or delete posts. We'll fix that in this video.