nothing
This commit is contained in:
parent
9c84e75e8c
commit
a108579de4
22
app/views.py
22
app/views.py
@ -678,17 +678,17 @@ def import_csv():
|
||||
cover = ''
|
||||
if row['file'] == '':
|
||||
file = 'potential.pdf'
|
||||
# file_extension = '.pdf'
|
||||
# ptitle = row['title']
|
||||
# pbook = Potential(ptitle)
|
||||
# db.session.add(pbook)
|
||||
# db.session.commit()
|
||||
# pbooks = Potential.query.all()
|
||||
# template = 'app/templates/potential_pdf.html'
|
||||
# html_string = render_template('potential_pdf.html', pbooks = pbooks)
|
||||
# html = HTML(string=html_string)
|
||||
# html.write_pdf(target='app/uploads/potential.pdf')
|
||||
# print ('writing to potential_pdf')
|
||||
file_extension = '.pdf'
|
||||
ptitle = row['title']
|
||||
pbook = Potential(ptitle)
|
||||
db.session.add(pbook)
|
||||
db.session.commit()
|
||||
pbooks = Potential.query.all()
|
||||
template = 'app/templates/potential_pdf.html'
|
||||
html_string = render_template('potential_pdf.html', pbooks = pbooks)
|
||||
html = HTML(string=html_string)
|
||||
html.write_pdf(target='app/uploads/potential.pdf')
|
||||
print ('writing to potential_pdf')
|
||||
|
||||
else:
|
||||
fullpath = os.path.join(app.config['UPLOAD_FOLDER'], row['file'])
|
||||
|
Loading…
Reference in New Issue
Block a user