March 2020
Intermediate to advanced
608 pages
17h 17m
English
To begin, change the PYTHON SOCIAL AUTH label to something more user-friendly, such as SOCIAL AUTHENTICATION. Now, follow these steps:
# myproject/apps/accounts/apps.pyfrom django.apps import AppConfigfrom django.utils.translation import ugettext_lazy as _class AccountsConfig(AppConfig): name = "myproject.apps.accounts" verbose_name = _("Accounts") def ready(self): passclass SocialDjangoConfig(AppConfig): name = "social_django" verbose_name = _("Social Authentication")