summaryrefslogtreecommitdiff
path: root/app/posts/models.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2025-03-23 09:12:17 -0500
committerluxagraf <sng@luxagraf.net>2025-03-23 09:12:17 -0500
commit1ddbab18a649a8da32d1e574b3f14f45975efabb (patch)
tree0069518448804bf35ac2919750e9c84e5eeeaaf8 /app/posts/models.py
parentfa4f915ccf415136b7d4bb25f9ed84e4abe3b518 (diff)
posts: added photo essay detail page and build
Diffstat (limited to 'app/posts/models.py')
-rw-r--r--app/posts/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/posts/models.py b/app/posts/models.py
index 6179fbe..ba578b8 100644
--- a/app/posts/models.py
+++ b/app/posts/models.py
@@ -135,6 +135,8 @@ class Post(models.Model):
return self.title
def get_absolute_url(self):
+ if self.post_type == PostType.PHOTO_ESSAY:
+ return reverse('photo_essay:detail', kwargs={"slug": self.slug})
if self.post_type == PostType.ESSAY:
return reverse('essays:detail', kwargs={"cat": self.get_post_topic_display(), "slug": self.slug})
if self.post_type == PostType.SRC: