We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f73abb commit 41f928aCopy full SHA for 41f928a
app.py
@@ -331,11 +331,11 @@ def property_detail(property_name, tab):
331
ORDER BY uploaded_at DESC
332
""", (property_name, tab))
333
uploads = c.fetchall()
334
- uploads = [
335
- (fname, source, description, uploaded_at)
336
- for (fname, source, description, uploaded_at) in uploads
337
- if os.path.exists(os.path.join(app.config['UPLOAD_FOLDER'], property_name, tab, fname))
338
- ]
+ # uploads = [
+ # (fname, source, description, uploaded_at)
+ # for (fname, source, description, uploaded_at) in uploads
+ # if os.path.exists(os.path.join(app.config['UPLOAD_FOLDER'], property_name, tab, fname))
+ # ]
339
340
return render_template(
341
'property_detail.html',
0 commit comments