def user_display(user): global _user_display_callable if not _user_display_callable: f = getattr(settings, "ACCOUNT_USER_DISPLAY", lambda user: user.username) _user_display_callable = import_callable(f) return _user_display_callable(user)
def user_display(user): global _user_display_callable if not _user_display_callable: f = getattr(settings, "ACCOUNT_USER_DISPLAY", default_user_display) _user_display_callable = import_callable(f) return _user_display_callable(user)
def _get_locale_callable(self): settings = self.get_settings() f = settings.get('LOCALE_FUNC') if f: f = import_callable(f) else: f = get_default_locale_callable() return f
def _get_locale_callable(self): settings = self.get_settings() func = settings.get("LOCALE_FUNC") return import_callable(func) if func else get_default_locale_callable()