11 lines
277 B
Python
11 lines
277 B
Python
"""
|
|
horilla_context_process.py
|
|
|
|
This module is used to register context processors without effecting the horilla/settings.py module
|
|
"""
|
|
from horilla.settings import TEMPLATES
|
|
|
|
TEMPLATES[0]["OPTIONS"]["context_processors"].append(
|
|
"base.context_processors.get_companies",
|
|
)
|