Django comes with a built-in admin panel. We need to register our Post model so we can write blog posts through the UI.
python manage.py runserver
Older versions of the course (specifically the 2020 version) have been archived here by users for public streaming or borrowing . What the Content Covers Django comes with a built-in admin panel
class Post(models.Model): title = models.CharField(max_length=200) content = models.TextField() published_date = models.DateTimeField(auto_now_add=True) author = models.ForeignKey(User, on_delete=models.CASCADE) Django comes with a built-in admin panel
This is the primary platform where the course is hosted. It includes offline viewing options via the Udemy Android App . Django comes with a built-in admin panel