summaryrefslogtreecommitdiff
path: root/app/builder
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2016-06-17 21:37:18 -0400
committerluxagraf <sng@luxagraf.net>2016-06-17 21:37:18 -0400
commit3f49776311bd21085f78c2acbd51f9edfe44f840 (patch)
tree1dcd00cd5384d71f655c36228c443da3de7707d1 /app/builder
parentb658d4b38f1aab3ed1bdc629300392c1b3e9e8fa (diff)
finished up notes builder
Diffstat (limited to 'app/builder')
-rw-r--r--app/builder/views.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/builder/views.py b/app/builder/views.py
index dfce406..1b537bd 100644
--- a/app/builder/views.py
+++ b/app/builder/views.py
@@ -8,6 +8,7 @@ from books.build import builder as book_builder
from birds.build import builder as bird_builder
from photos.build import builder as photo_builder
from figments.build import builder as figments_builder
+from notes.build import builder as notes_builder
options = {
'writing': BuildWriting,
@@ -53,6 +54,9 @@ def do_build(request):
elif section == 'figments':
context = {'message': 'Writing figments to Disk'}
figments_builder()
+ elif section == 'notes':
+ context = {'message': 'Writing notes to Disk'}
+ notes_builder()
elif section == 'buildamp':
context = {'message': 'Writing detail amp pages to Disk'}
amp_builder()