mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 09:33:54 +01:00
Fix outdated reference to BlogCategory in tutorial
This commit is contained in:
parent
1dbf2ec2df
commit
06a7bc6124
@ -847,7 +847,7 @@ class BlogPage(Page):
|
||||
date = models.DateField("Post date")
|
||||
intro = models.CharField(max_length=250)
|
||||
body = RichTextField(blank=True)
|
||||
authors = ParentalManyToManyField('blog.BlogCategory', blank=True)
|
||||
authors = ParentalManyToManyField('blog.Author', blank=True)
|
||||
|
||||
# Add this:
|
||||
tags = ClusterTaggableManager(through=BlogPageTag, blank=True)
|
||||
|
Loading…
Reference in New Issue
Block a user