You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title = models.CharField(max_length=50, help_text="Title for our blog", unique_for_date="published_date")
content = models.TextField(help_text="Content for our blog")
created_date = models.DateTimeField(auto_now_add=True, help_text="Date on which the blog is made")
published_date = models.DateField(help_text="Default blog publish date of 5 days later", verbose_name="Published Date", default=datetime.now() + timedelta(days=5))