diff --git a/config/settings.py b/config/settings.py index d781bca..da02c15 100644 --- a/config/settings.py +++ b/config/settings.py @@ -174,7 +174,7 @@ 'django.contrib.messages.context_processors.messages', ], 'libraries': { - 'generic_helper': 'templatetags.custom_tags', + 'custom_tags': 'templatetags.custom_tags', }, }, }, diff --git a/templates/index.html b/templates/index.html index f462da3..061267c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,5 +1,5 @@ {% extends "layouts/main.html" %} -{% load generic_helper %} +{% load custom_tags %} {% block title %} {% current_page_title "Home" %} diff --git a/templates/layouts/header.html b/templates/layouts/header.html index da696de..8bd16ac 100644 --- a/templates/layouts/header.html +++ b/templates/layouts/header.html @@ -1,4 +1,4 @@ -{% load generic_helper %} +{% load custom_tags %}