diff --git a/src/apps/lyric/models.py b/src/apps/lyric/models.py index ef4cfb5..a13c26b 100644 --- a/src/apps/lyric/models.py +++ b/src/apps/lyric/models.py @@ -92,8 +92,10 @@ class Token(models.Model): return self.get_token_type_display() def tooltip_description(self): - if self.token_type in (self.COIN, self.FREE, self.PASS): + if self.token_type in (self.COIN, self.FREE): return "Admit 1 Entry" + if self.token_type == self.PASS: + return "Admit All Entry" if self.token_type == self.TITHE: return "+ Writ bonus" return ""