summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-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 ffe70ca..d820f0e 100644
--- a/app/builder/views.py
+++ b/app/builder/views.py
@@ -6,6 +6,7 @@ from jrnl.build import BuildJrnl, build_arc, build_detail
from resume.build import builder as resume_builder
from books.build import builder as book_builder
from photos.build import builder as photo_builder
+from figments.build import builder as figments_builder
options = {
'writing': BuildWriting,
@@ -45,6 +46,9 @@ def do_build(request):
elif section == 'luxphotos':
context = {'message': 'Writing galleries to Disk'}
photo_builder()
+ elif section == 'figments':
+ context = {'message': 'Writing figments to Disk'}
+ figments_builder()
else:
options[section]().build()
context = {'message': 'Writing %s to Disk' % section}