diff options
Diffstat (limited to 'app/posts/models.py')
-rw-r--r-- | app/posts/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/posts/models.py b/app/posts/models.py index 7870b35..11ad509 100644 --- a/app/posts/models.py +++ b/app/posts/models.py @@ -73,7 +73,6 @@ class PostType(models.IntegerChoices): SRC = 3, ('src') JRNL = 4, ('jrnl') FIELD_NOTE = 5, ('field note') - GUIDE = 6, ('guide') FILM = 7, ('film') @@ -187,7 +186,7 @@ class Post(models.Model): @property def sitemap_priority(self): - if self.post_type in [2,4,5]: + if self.post_type in [2,3,4]: return 1.0 else: return 0.7 |