blob: b11c756b04b16031cbfe09fb8f6a369b2e6ef751 (
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
29
30
|
import os
from django.urls import reverse
from builder.base import BuildNew
class BuildLuxPhotos(BuildNew):
def build(self):
self.build_detail_view()
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 = BuildLuxPhotos("photos", "LuxGallery")
j.build()
|