|
@ -34,8 +34,7 @@ def conference(): |
|
|
@app.route('/<type>/<title>') |
|
|
@app.route('/<type>/<title>') |
|
|
def event_article(type, title): |
|
|
def event_article(type, title): |
|
|
data = get_content_by_title(title, type) |
|
|
data = get_content_by_title(title, type) |
|
|
print(data) |
|
|
return render_template('article.html', title=title, content=data) |
|
|
return render_template('article.html', title=title) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_all_content(type): |
|
|
def get_all_content(type): |
|
@ -61,10 +60,12 @@ def get_all_content(type): |
|
|
return content_list |
|
|
return content_list |
|
|
|
|
|
|
|
|
def get_content_by_title(title, pre_type): |
|
|
def get_content_by_title(title, pre_type): |
|
|
|
|
|
print(title) |
|
|
content_list = [] |
|
|
content_list = [] |
|
|
type = pre_type[:-1] |
|
|
type = pre_type[:-1] |
|
|
entries = client.entries({'query': title, 'limit': 1}) |
|
|
entries = client.entries({'query': title, 'limit': 5}) |
|
|
for entry in entries: |
|
|
exact_matches = [entry for entry in entries if getattr(entry, f'title_of_{type}') == title] |
|
|
|
|
|
for entry in exact_matches: |
|
|
|
|
|
|
|
|
date_time_obj = getattr(entry, f'{type}_date_time') |
|
|
date_time_obj = getattr(entry, f'{type}_date_time') |
|
|
date_str, time_str = format_datetime(date_time_obj) |
|
|
date_str, time_str = format_datetime(date_time_obj) |
|
@ -81,6 +82,7 @@ def get_content_by_title(title, pre_type): |
|
|
'location': getattr(entry, f'{type}_location') |
|
|
'location': getattr(entry, f'{type}_location') |
|
|
} |
|
|
} |
|
|
content_list.append(content) |
|
|
content_list.append(content) |
|
|
|
|
|
print(content_list) |
|
|
return content_list |
|
|
return content_list |
|
|
|
|
|
|
|
|
def format_datetime(dt): |
|
|
def format_datetime(dt): |
|
|