diff options
author | luxagraf <sng@luxagraf.net> | 2020-12-02 12:41:14 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-12-02 12:41:14 -0500 |
commit | 8b2b5dec69a1d5d3c9e19c5eda48d1d6f706f9b4 (patch) | |
tree | 8ef75a6df028cdf04b2ad603cfd92a587049b15b /app/builder | |
parent | d4e55690d3293f375cb207693e9b02b39b4a940e (diff) |
ready to get rid of photos model for media model
Diffstat (limited to 'app/builder')
-rw-r--r-- | app/builder/views.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/app/builder/views.py b/app/builder/views.py index 5988e1f..b50bcb3 100644 --- a/app/builder/views.py +++ b/app/builder/views.py @@ -5,10 +5,7 @@ from django.template import RequestContext from resume.build import pub_builder, resume_builder from books.build import builder as book_builder from sightings.build import builder as sightings_builder -from photos.build import builder as photo_builder -#from notes.build import builder as notes_builder from pages.build import BuildPages, BuildHome -from photos.build import dailybuilder from posts.build import BuildJrnl, BuildFieldNotes, BuildSrc, BuildGuide from lttr.build import lttr_builder @@ -50,12 +47,6 @@ def do_build(request): elif section == 'buildsightings': context = {'message': 'Writing Sightings Pages to Disk'} sightings_builder() - elif section == 'luxphotos': - context = {'message': 'Writing galleries to Disk'} - photo_builder() - elif section == 'figments': - context = {'message': 'Writing figments to Disk'} - figments_builder() elif section == 'resume': context = {'message': 'Writing Resume to Disk'} resume_builder() @@ -65,9 +56,6 @@ def do_build(request): elif section == 'map': context = {'message': 'Writing Map to Disk'} map_builder() - elif section == 'dailyphotos': - context = {'message': 'Writing daily photo pages to Disk'} - dailybuilder() elif section == 'discursivepages': context = {'message': 'Writing Discursive Meditation Pages to Disk'} BuildPages("pages", "page", 'discursivemeditation.com').build() |