diff --git a/profile/models.py b/profile/models.py index 82c5650f13193b758de741e005e029be833db017..f4bbed42e12416824440961e847b402ad3a91adc 100644 --- a/profile/models.py +++ b/profile/models.py @@ -24,10 +24,8 @@ from django.utils.translation import ugettext_lazy as _ class Profile(models.Model): user = models.OneToOneField(User, on_delete=models.CASCADE, related_name='profile', editable=False) - cba_username = models.CharField(_("CBA Username"), blank=True, max_length=60, - help_text=_("Your username in CBA. This is necessary for uploading files to your account.")) - cba_user_token = models.CharField(_("CBA Token"), blank=True, max_length=255, help_text=_( - "The CBA upload token for your account. This is NOT your password which you use to log into CBA!")) + cba_username = models.CharField(_("CBA Username"), blank=True, max_length=60) + cba_user_token = models.CharField(_("CBA Token"), blank=True, max_length=255) def __str__(self): return self.user.username