浏览代码

Fixed #11796 - Tweaked ordering of permissions a little more to be even nicer.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12219 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Jannis Leidel 15 年之前
父节点
当前提交
f4998574d3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      django/contrib/auth/models.py

+ 1 - 1
django/contrib/auth/models.py

@@ -72,7 +72,7 @@ class Permission(models.Model):
         verbose_name = _('permission')
         verbose_name_plural = _('permissions')
         unique_together = (('content_type', 'codename'),)
-        ordering = ('content_type__app_label', 'codename')
+        ordering = ('content_type__app_label', 'content_type__model', 'codename')
 
     def __unicode__(self):
         return u"%s | %s | %s" % (