blob: b1bd53d873c54350456c18a05a69991d7abac32e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
from django.template.loader import render_to_string
from django.template import Context
from django.urls import reverse
from django.conf import settings
from builder.base import BuildNew
class BuildPages(BuildNew):
def build(self):
self.build_detail_view()
print("building pages")
'''
def build_essays(self):
qs = self.model.objects.filter(path="essays", build=True)
c = {'object_list': qs, 'MEDIA_URL': settings.BAKED_MEDIA_URL, 'IMAGES_URL': settings.BAKED_IMAGES_URL}
t = render_to_string('archives/essays.html', c).encode('utf-8')
self.write_file('essays/', t)
'''
def get_model_queryset(self):
return self.model.objects.filter(build=True)
def builder():
j = BuildPages("pages", "Page")
j.build()
|