updated description text on Backstage Pass to more accurately describe its unlimited capacity
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-15 17:54:58 -04:00
parent 435bec7988
commit ace9a4888e

View File

@@ -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 ""