summaryrefslogtreecommitdiff
path: root/app/posts/models.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2024-12-27 09:47:42 -0600
committerluxagraf <sng@luxagraf.net>2024-12-27 09:47:42 -0600
commit8c7b0e1abe1983fac38322c3bc01165c4c693d7e (patch)
tree2f91e32f0dae419fe46f773fe9a11817b809fcf0 /app/posts/models.py
parent05b386315c09c735201566cf8945fc8ff78d2741 (diff)
jrnl: added a photo essay post type and new url/template/views. also cleared out some old unneeded files
Diffstat (limited to 'app/posts/models.py')
-rw-r--r--app/posts/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/posts/models.py b/app/posts/models.py
index 377225f..6179fbe 100644
--- a/app/posts/models.py
+++ b/app/posts/models.py
@@ -73,6 +73,7 @@ class PostType(models.IntegerChoices):
SRC = 3, ('src')
JRNL = 4, ('jrnl')
FIELD_NOTE = 5, ('field note')
+ PHOTO_ESSAY = 6, ('photo essay')
class PostTopic(models.IntegerChoices):