summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-08-01 10:27:30 -0400
committerTim Graham <timograham@gmail.com>2013-08-01 10:27:30 -0400
commit5df84b268de45fffd90930e6442eb511cba71f5f (patch)
treed9e08a2261186efbc4e619f7157f93975bbb39b2 /docs/ref/models
parent1123f4551158b7fc65d3bd88c375a4517dcd0720 (diff)
Removed unused model option "admin"
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/options.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index d54af37e86..41baa8c106 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -227,9 +227,8 @@ Django quotes column and table names behind the scenes.
.. attribute:: Options.permissions
Extra permissions to enter into the permissions table when creating this object.
- Add, delete and change permissions are automatically created for each object
- that has ``admin`` set. This example specifies an extra permission,
- ``can_deliver_pizzas``::
+ Add, delete and change permissions are automatically created for each
+ model. This example specifies an extra permission, ``can_deliver_pizzas``::
permissions = (("can_deliver_pizzas", "Can deliver pizzas"),)