Skip to content

Commit 2c78bf7

Browse files
committed
fix missing template for fallback structure
1 parent 40d8f1b commit 2c78bf7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ephios/core/signup/fallback.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
ImproperlyConfiguredError,
1212
)
1313
from ephios.core.signup.structure.base import BaseShiftStructure
14+
from ephios.plugins.baseshiftstructures.structure.common import (
15+
RenderParticipationPillsShiftStateMixin,
16+
)
1417

1518
logger = logging.getLogger(__name__)
1619

@@ -56,7 +59,7 @@ def _configure_participation(
5659
raise TypeError(f"{self.__class__} does not support signup")
5760

5861

59-
class FallbackShiftStructure(BaseShiftStructure):
62+
class FallbackShiftStructure(RenderParticipationPillsShiftStateMixin, BaseShiftStructure):
6063
slug = None
6164
verbose_name = _("Fallback for missing shift structures")
6265
description = _(

0 commit comments

Comments
 (0)