You're viewing all posts tagged with templatetags

Shortcut for printing user’s full name or username in template

That’s it:

from django import template

@register.filter
def nice_name(user):
    """
    Example::

        Hi, {{ user|nice_name }}
    """
    return user.get_full_name() or user.username
Comments: 45