2013-12-09 23:56:01 +01:00
|
|
|
def add_assignment_stylesheets(sender, request, context, **kwargs):
|
|
|
|
"""
|
2014-11-13 22:23:16 +01:00
|
|
|
Receiver function to add the assignment.css to the context. It is
|
|
|
|
connected to the signal openslides.utils.signals.template_manipulation
|
|
|
|
during app loading.
|
2013-12-09 23:56:01 +01:00
|
|
|
"""
|
2014-01-14 23:22:29 +01:00
|
|
|
context['extra_stylefiles'].append('css/assignment.css')
|