Fixup verbose names
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
from oauth2_provider.models import AbstractApplication
|
||||
|
||||
from passbook.core.models import Provider
|
||||
from django.utils.translation import gettext as _
|
||||
|
||||
|
||||
class OAuth2Provider(Provider, AbstractApplication):
|
||||
@ -10,3 +11,8 @@ class OAuth2Provider(Provider, AbstractApplication):
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
class Meta:
|
||||
|
||||
verbose_name = _('OAuth2 Provider')
|
||||
verbose_name_plural = _('OAuth2 Providers')
|
||||
|
Reference in New Issue
Block a user