Skip to content

defcube/django-definition-tag

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Allows easy creation of template tags that define a context variable

The "tag function" returns a value which, when called inside a template, is stored in a variable or displayed directly.

Example:

@definition_tag(register=register) def top_players(context): return TopScores.objects.order_by('-elo')[:20]

Inside the template, we could call {% top_players %} to output the data, or we could call {% top_players as foo %} {{ foo }}.

About

Allows easy creation of template tags that define a context variable

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages