Source code for users

"""The app that handles users."""


# XXX: Can't add type hint due to circular import.
[docs]def get_user_display(user) -> str: """ Display the name of the user. :param user: A ``User`` model instance. :type user: :class:`~django.contrib.auth.models.User` :return: The user's full name if available, otherwise the username. """ full_name = user.get_full_name() return full_name if len(full_name.strip()) else user.username
#: The config class of the app. default_app_config = 'users.apps.UsersConfig' __all__ = ['get_user_display', 'default_app_config']