how to add template tag file in django code example
Example: template tags in django
from django import template
register = template.Library()
#simle Tag
@register.simple_tag
def fun_name(data):
return data
from django import template
register = template.Library()
#simle Tag
@register.simple_tag
def fun_name(data):
return data