diff --git a/fet2020/posts/views.py b/fet2020/posts/views.py index 39c14f6f..2481bf09 100644 --- a/fet2020/posts/views.py +++ b/fet2020/posts/views.py @@ -87,7 +87,7 @@ def show(request, id=None): ep_agenda_link = "#" ep_protocol_link = "#" - if p.has_agenda and p.agenda_key: + if p.has_agenda:# and p.agenda_key: try: ep_agenda_link = get_pad_link(p.agenda_key) except Exception as e: @@ -98,7 +98,7 @@ def show(request, id=None): ) ep_agenda_link = "#" - if p.has_protocol and p.protocol_key: + if p.has_protocol:# and p.protocol_key: try: ep_protocol_link = get_pad_link(p.protocol_key) except Exception as e: