Exemplo 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)
Exemplo 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)
Exemplo 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)
Exemplo 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
Exemplo 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
Exemplo 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()
Exemplo 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)