We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40d8f1b commit 2c78bf7Copy full SHA for 2c78bf7
ephios/core/signup/fallback.py
@@ -11,6 +11,9 @@
11
ImproperlyConfiguredError,
12
)
13
from ephios.core.signup.structure.base import BaseShiftStructure
14
+from ephios.plugins.baseshiftstructures.structure.common import (
15
+ RenderParticipationPillsShiftStateMixin,
16
+)
17
18
logger = logging.getLogger(__name__)
19
@@ -56,7 +59,7 @@ def _configure_participation(
56
59
raise TypeError(f"{self.__class__} does not support signup")
57
60
58
61
-class FallbackShiftStructure(BaseShiftStructure):
62
+class FallbackShiftStructure(RenderParticipationPillsShiftStateMixin, BaseShiftStructure):
63
slug = None
64
verbose_name = _("Fallback for missing shift structures")
65
description = _(
0 commit comments