12 lines
255 B
Python
12 lines
255 B
Python
"""
|
|
horilla_audit/settings.py
|
|
|
|
This module is used to write settings contents related to payroll app
|
|
"""
|
|
|
|
from horilla.settings import TEMPLATES
|
|
|
|
TEMPLATES[0]["OPTIONS"]["context_processors"].append(
|
|
"horilla_audit.context_processors.history_form",
|
|
)
|