diff options
author | luxagraf <sng@luxagraf.net> | 2024-12-27 09:47:42 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-12-27 09:47:42 -0600 |
commit | 8c7b0e1abe1983fac38322c3bc01165c4c693d7e (patch) | |
tree | 2f91e32f0dae419fe46f773fe9a11817b809fcf0 /app/posts/models.py | |
parent | 05b386315c09c735201566cf8945fc8ff78d2741 (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.py | 1 |
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): |