diff --git a/funnel/templates/project_layout.html.jinja2 b/funnel/templates/project_layout.html.jinja2 index 9bbba0326..7ae34b1a8 100644 --- a/funnel/templates/project_layout.html.jinja2 +++ b/funnel/templates/project_layout.html.jinja2 @@ -396,7 +396,7 @@ - {% if not project.state.PAST and project.features.tickets() -%} + {% if project.features.tickets() -%}
diff --git a/funnel/views/project.py b/funnel/views/project.py index 27e93ff47..153fcff15 100644 --- a/funnel/views/project.py +++ b/funnel/views/project.py @@ -177,6 +177,7 @@ def feature_project_tickets(obj: Project) -> bool: and 'item_collection_id' in obj.boxoffice_data and obj.boxoffice_data['item_collection_id'] and not obj.state.PAST + and not obj.current_roles.ticket_participant )