AI functins complete
This commit is contained in:
@@ -174,6 +174,13 @@ class Content(SiteSectorBaseModel):
|
||||
default=0,
|
||||
help_text="Actual word count of content (calculated from HTML)"
|
||||
)
|
||||
|
||||
# SEO fields
|
||||
meta_title = models.CharField(max_length=255, blank=True, null=True, help_text="SEO meta title")
|
||||
meta_description = models.TextField(blank=True, null=True, help_text="SEO meta description")
|
||||
primary_keyword = models.CharField(max_length=255, blank=True, null=True, help_text="Primary SEO keyword")
|
||||
secondary_keywords = models.JSONField(default=list, blank=True, help_text="Secondary SEO keywords")
|
||||
|
||||
cluster = models.ForeignKey(
|
||||
'planner.Clusters',
|
||||
on_delete=models.SET_NULL,
|
||||
|
||||
Reference in New Issue
Block a user