|
@@ -44,6 +44,8 @@ def create():
|
|
|
form = CollectionCreateForm()
|
|
|
csliderimg = []
|
|
|
csliderimgfilename = []
|
|
|
+ ownerimgfile = ""
|
|
|
+ commentimgfile = ""
|
|
|
form.image.data.filename = processImgFile(form.image.data.filename)
|
|
|
# for file in form.collectionslider.data:
|
|
|
# file.filename = processImgFile(file.filename)
|
|
@@ -54,8 +56,13 @@ def create():
|
|
|
|
|
|
form.image.data.filename = str(uuid.uuid4()).replace('-','') + ".webp"
|
|
|
form.coverimg.data.filename = str(uuid.uuid4()).replace('-','') + ".webp"
|
|
|
- form.ownerimg.data.filename = str(uuid.uuid4()).replace('-','') + ".webp"
|
|
|
- form.comment.data.filename = str(uuid.uuid4()).replace('-','') + ".webp"
|
|
|
+ print(form.ownerimg.data)
|
|
|
+ if form.ownerimg.data:
|
|
|
+ form.ownerimg.data.filename = str(uuid.uuid4()).replace('-','') + ".webp"
|
|
|
+ ownerimgfile = "img/" + form.ownerimg.data.filename
|
|
|
+ if form.comment.data:
|
|
|
+ form.comment.data.filename = str(uuid.uuid4()).replace('-','') + ".webp"
|
|
|
+ commentimgfile = "img/" + form.comment.data.filename
|
|
|
|
|
|
front_matter = '''---
|
|
|
meta_title: "{}"\nmeta_description: "{}"\ntitle: "{}"\ndate: {}\n\
|
|
@@ -69,7 +76,7 @@ description: "{}"\n\
|
|
|
tags: ["{}"]\n\
|
|
|
banner_img_text: "{}"\n\
|
|
|
homeowner: "{}"\n\
|
|
|
-owner_img: "img/{}"\n\
|
|
|
+owner_img: "{}"\n\
|
|
|
size: "{}"\n\
|
|
|
house_size: "{}"\n\
|
|
|
bed_num: "{}"\n\
|
|
@@ -83,13 +90,13 @@ budget: "{}"\n\
|
|
|
construction: "{}"\n\
|
|
|
collection_description: "{}"\n\
|
|
|
collection_slider: [] \n\
|
|
|
-comment: "img/{}"\n\
|
|
|
+comment: "{}"\n\
|
|
|
---'''.format(form.title.data, form.description.data.replace('\r\n','<br>'), form.title.data,
|
|
|
get_now_time(), 'true', 'collection', '/collection/{}'.format(eng_name),
|
|
|
form.image.data.filename, form.collectiontitle.data, form.coverimg.data.filename, form.description.data.replace('\r\n','<br>'), form.tags.data,
|
|
|
- form.bannerimgtext.data, form.homeowner.data, form.ownerimg.data.filename, form.size.data, form.housesize.data, form.bednum.data,
|
|
|
+ form.bannerimgtext.data, form.homeowner.data, ownerimgfile, form.size.data, form.housesize.data, form.bednum.data,
|
|
|
form.roomcount.data, form.housetype.data, form.designer.data, form.space.data, form.loc.data, form.budgetr.data,
|
|
|
- form.budget.data, form.construction.data, form.collectiondesc.data.replace('\r\n','<br>'), form.comment.data.filename)
|
|
|
+ form.budget.data, form.construction.data, form.collectiondesc.data.replace('\r\n','<br>'), commentimgfile)
|
|
|
print(front_matter)
|
|
|
data = {'frontMatter': front_matter,
|
|
|
'name': eng_name,
|