Çevre: Django 2.2
- Örnek kod:
from django.template.defaulttags import register
@register.filter(name='lookup')
def lookup(value, arg):
return value.get(arg)
Bu kodu portfoliomgr adlı proje klasörümde template_filters.py adlı bir dosyaya koydum
Filtre kodunuzu nereye koyarsanız koyun, o klasörde __init__.py olduğundan emin olun
Bu dosyayı proje klasörü / settings.py dosyanızın şablonlar bölümündeki kitaplıklar bölümüne ekleyin. Benim için portföymgr / settings.py
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
'libraries':{
'template_filters': 'portfoliomgr.template_filters',
}
},
},
]
Html kodunuza kitaplığı yükleyin
{% load template_filters %}