[docs]classAlertLevel(IntegerChoices):_symmetric_builtins_=[s("name",case_fold=True)]# fmt: offNOTICE=1,_("NOTICE")WARNING=2,_("WARNING")ERROR=3,_("ERROR")# fmt: ondef__str__(self):returnstr(self.label)@propertydefcss(self):""" The clss class to use for this level. """returnf"slm-alert-{self.name.lower()}"@propertydefcolor(self):""" The hex code of the color to use for this level. """fromdjango.confimportsettingsreturngetattr(settings,"SLM_ALERT_COLORS",{}).get(self,None)