From ed953f7c25dabc93a41cd332d240821cc815c3fc Mon Sep 17 00:00:00 2001 From: Horilla Date: Mon, 15 Apr 2024 16:28:02 +0530 Subject: [PATCH] [UPDT] HORILLA: Updated badge id prefix funtion name --- horilla/horilla_context_processors.py | 30 --------------------------- 1 file changed, 30 deletions(-) diff --git a/horilla/horilla_context_processors.py b/horilla/horilla_context_processors.py index 126a1f20b..e69de29bb 100644 --- a/horilla/horilla_context_processors.py +++ b/horilla/horilla_context_processors.py @@ -1,30 +0,0 @@ -""" -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", -) -TEMPLATES[0]["OPTIONS"]["context_processors"].append( - "base.context_processors.resignation_request_enabled", -) -TEMPLATES[0]["OPTIONS"]["context_processors"].append( - "base.context_processors.timerunner_enabled", -) -TEMPLATES[0]["OPTIONS"]["context_processors"].append( - "base.context_processors.intial_notice_period", -) -TEMPLATES[0]["OPTIONS"]["context_processors"].append( - "base.context_processors.check_candidate_self_tracking", -) -TEMPLATES[0]["OPTIONS"]["context_processors"].append( - "base.context_processors.check_candidate_self_tracking_rating", -) - -TEMPLATES[0]["OPTIONS"]["context_processors"].append( - "base.context_processors.get_intial_prefix", -)