Fixup verbose names

This commit is contained in:
Jens Langhammer
2018-11-26 17:17:32 +01:00
parent ca80ebc0cc
commit 15ed14046e
9 changed files with 86 additions and 8 deletions

View File

@ -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')