summaryrefslogtreecommitdiff
path: root/app/sketches/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/sketches/build.py')
-rw-r--r--app/sketches/build.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/app/sketches/build.py b/app/sketches/build.py
new file mode 100644
index 0000000..ac016c2
--- /dev/null
+++ b/app/sketches/build.py
@@ -0,0 +1,36 @@
+import os
+from django.urls import reverse
+from builder.base import BuildNew
+
+
+class BuildSketches(BuildNew):
+
+ def build(self):
+ self.build_detail_view()
+ self.build_list_view(
+ base_path=reverse("sketches:list"),
+ paginate_by=24
+ )
+ self.build_year_view("sketches:list_year")
+ self.build_month_view("sketches:list_month")
+
+ def get_model_queryset(self):
+ return self.model.objects.all()
+
+ def build_detail_view(self):
+ '''
+ write out all the expenses for each trip
+ '''
+ for obj in self.get_model_queryset():
+ url = obj.get_absolute_url()
+ path, slug = os.path.split(url)
+ path = '%s/' % path
+ # write html
+ response = self.client.get(url)
+ print(path, slug)
+ self.write_file(path, response.content, filename=slug)
+
+
+def builder():
+ j = BuildNotes("sketches", "sketch")
+ j.build()