Esempio n. 1
0
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)
Esempio n. 2
0
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)
Esempio n. 3
0
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)
Esempio n. 4
0
 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
Esempio n. 5
0
 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
Esempio n. 6
0
 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()
Esempio n. 7
0
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)