1 2 3 4 5 6 7 8 9 10 11 | from django import template
register = template.Library()
@register.filter
def check_login(request):
if request.user.is_authenticated():
return True
else:
return False
|
More like this
- Template tag to create a list from one or more variables and/or literals by davidchambers 2 years, 8 months ago
- Basic logic filters by mikeivanov 5 years, 8 months ago
- Pagination/Filtering Alphabetically by zain 4 years, 2 months ago
- Login + logout script from a nub by alandelevie 4 years, 4 months ago
- @reply links in Twitter messages by ryanberg 4 years, 10 months ago
Comments
Can't you just do something like this:
#
Hi azumafuji,
I didn't know that methods can be called from templates. Thanks for pointing out.
#