* Add new role for support staff. * Move dashboard/support functionality into a new Django app called "support". * Add support view for searching and regenerating certificates. * Refactor certificates views into separate files.
9 lines
185 B
Python
9 lines
185 B
Python
"""
|
|
Aggregate all views exposed by the certificates app.
|
|
"""
|
|
# pylint: disable=wildcard-import
|
|
from .xqueue import *
|
|
from .support import *
|
|
from .webview import *
|
|
from .badges import *
|