Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1class LEVEL:
2 """A notification level (using levels from django.contrib.messages.constants)."""
3 DEBUG = 10
4 INFO = 20
5 SUCCESS = 25
6 WARNING = 30
7 ERROR = 40
10DEFAULT_ICONS = {
11 LEVEL.DEBUG: "fas fa-bug",
12 LEVEL.INFO: "fas fa-info-circle",
13 LEVEL.SUCCESS: "fas fa-check-circle",
14 LEVEL.WARNING: "fas fa-exclamation-triangle",
15 LEVEL.ERROR: "fas fa-exclamation-circle",
16}
17"""Map levels to Font Awesome icons."""
20class STAGE:
21 """The stage of a notification."""
23 DRAFT = 1
24 QUEUED = 2
25 SENT = 3
26 ARCHIVED = 4