codingforentrepreneurs/try-django-19

Slug field

sprytnyk opened this issue · 0 comments

When you create a new post with a title == 120 you've got an error. It's occurred because of slugfield in models.py. You need to add max_length = 120 to fix it. It's confusing for such begginers as me.