We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85da376 commit 3f139daCopy full SHA for 3f139da
docs/authorization.rst
@@ -12,7 +12,7 @@ Let's use a simple example model.
12
from django.db import models
13
14
class Post(models.Model):
15
- name = models.CharField(max_length=100)
+ title = models.CharField(max_length=100)
16
content = models.TextField()
17
published = models.BooleanField(default=False)
18
owner = models.ForeignKey('auth.User')
0 commit comments