diff options
author | luxagraf <sng@luxagraf.net> | 2019-11-05 11:14:09 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-11-05 11:14:09 -0500 |
commit | 725e3d2f798d228a386466823490b6f25647a4db (patch) | |
tree | 4a4bdfbe7c494a596631bcb7312708dbf2115263 /app/builder | |
parent | f65cea71db9d0ae489f6228d5d2c68dab0bd91ce (diff) |
added updates to posts model
Diffstat (limited to 'app/builder')
-rw-r--r-- | app/builder/views.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/builder/views.py b/app/builder/views.py index 2333704..7491b32 100644 --- a/app/builder/views.py +++ b/app/builder/views.py @@ -11,7 +11,6 @@ from notes.build import builder as notes_builder from pages.build import builder as page_builder from fieldnotes.build import builder as fieldnotes_builder from photos.build import dailybuilder -from essays.build import essaybuilder from posts.build import posts_builder options = { @@ -77,9 +76,6 @@ def do_build(request): elif section == 'fieldnotes': context = {'message': 'Writing FieldNotes to Disk'} fieldnotes_builder() - elif section == 'essays': - context = {'message': 'Writing Essays to Disk'} - essaybuilder() elif section == 'buildposts': context = {'message': 'Writing Posts to Disk'} posts_builder() |