summaryrefslogtreecommitdiff
path: root/app/unused_apps/fieldnotes/build.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-11-11 22:39:19 -0500
committerluxagraf <sng@luxagraf.net>2020-11-11 22:39:19 -0500
commitd16c597d1e4e52ab1df1c77bda54445437bac5c0 (patch)
tree30b8d52cb3c874ad7656be08d1295529353a97db /app/unused_apps/fieldnotes/build.py
parentef37adba510d3f18fe23f7bc34071c70df21a191 (diff)
cleaned up Posts Admin and added field_notes
Diffstat (limited to 'app/unused_apps/fieldnotes/build.py')
-rw-r--r--app/unused_apps/fieldnotes/build.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/app/unused_apps/fieldnotes/build.py b/app/unused_apps/fieldnotes/build.py
new file mode 100644
index 0000000..4c5c83b
--- /dev/null
+++ b/app/unused_apps/fieldnotes/build.py
@@ -0,0 +1,36 @@
+import os
+from django.urls import reverse
+from builder.base import BuildNew
+
+
+class BuildNotes(BuildNew):
+
+ def build(self):
+ self.build_detail_view()
+ self.build_list_view(
+ base_path=reverse("fieldnotes:list"),
+ paginate_by=24
+ )
+ self.build_year_view("fieldnotes:list_year")
+ self.build_month_view("fieldnotes: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("fieldnotes", "fieldnote")
+ j.build()