* 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.
8 lines
153 B
Python
8 lines
153 B
Python
"""
|
|
Aggregate all views for the support app.
|
|
"""
|
|
# pylint: disable=wildcard-import
|
|
from .index import *
|
|
from .certificate import *
|
|
from .refund import *
|