diff --git a/newsroom/agenda/views.py b/newsroom/agenda/views.py index 5246fe259..95709539c 100644 --- a/newsroom/agenda/views.py +++ b/newsroom/agenda/views.py @@ -108,7 +108,8 @@ async def item(_id): return flask.render_template( "agenda_index.html", data=data, - title=item.get("name", item.get("headline"), user_profile_data=user_profile_data), + title=item.get("name", item.get("headline")), + user_profile_data=user_profile_data, )