Skip to content
Snippets Groups Projects
Commit 2901bd25 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Remove help_text from Profile model

parent f884dc97
No related branches found
No related tags found
No related merge requests found
...@@ -24,10 +24,8 @@ from django.utils.translation import ugettext_lazy as _ ...@@ -24,10 +24,8 @@ from django.utils.translation import ugettext_lazy as _
class Profile(models.Model): class Profile(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE, related_name='profile', editable=False) user = models.OneToOneField(User, on_delete=models.CASCADE, related_name='profile', editable=False)
cba_username = models.CharField(_("CBA Username"), blank=True, max_length=60, 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)
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!"))
def __str__(self): def __str__(self):
return self.user.username return self.user.username
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment