Skip to content

Instantly share code, notes, and snippets.

@dchuvardynskyi
Created February 16, 2020 21:03
Show Gist options
  • Select an option

  • Save dchuvardynskyi/5263bbe99a2fc86ad4c06c9fc9c9cd2b to your computer and use it in GitHub Desktop.

Select an option

Save dchuvardynskyi/5263bbe99a2fc86ad4c06c9fc9c9cd2b to your computer and use it in GitHub Desktop.
Register custom tag with register decorator
from django import template
from utils import money_display
register = template.Library()
@register.filter()
def money_display(value):
return money_display(value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment