summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-08-04 13:57:02 +1000
committerAndrew Godwin <andrew@aeracode.org>2014-08-04 13:57:36 +1000
commitb2ab666aad269fbd6fc7a9999aa0e76e08744188 (patch)
treecbc80ff44826b2a8e34c9d0613950a02da305fd7
parent6ebfff7f667f8e30afc6fb32a4349b6d0a4aa4ba (diff)
[1.7.x] Fixed #23163: Align user help text with migrations
-rw-r--r--django/contrib/auth/migrations/0001_initial.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/auth/migrations/0001_initial.py b/django/contrib/auth/migrations/0001_initial.py
index de38c960fb..6fe7411e9f 100644
--- a/django/contrib/auth/migrations/0001_initial.py
+++ b/django/contrib/auth/migrations/0001_initial.py
@@ -54,8 +54,8 @@ class Migration(migrations.Migration):
('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')),
('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')),
('date_joined', models.DateTimeField(default=timezone.now, verbose_name='date joined')),
- ('groups', models.ManyToManyField(to='auth.Group', verbose_name='groups', blank=True)),
- ('user_permissions', models.ManyToManyField(to='auth.Permission', verbose_name='user permissions', blank=True)),
+ ('groups', models.ManyToManyField(to='auth.Group', verbose_name='groups', blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.')),
+ ('user_permissions', models.ManyToManyField(to='auth.Permission', verbose_name='user permissions', blank=True, help_text='Specific permissions for this user.')),
],
options={
'swappable': 'AUTH_USER_MODEL',