浏览代码

Fixed #21562 -- Warned against using the same app name as a django contrib app.

Thanks yourcelf for the report.
Alasdair Nicol 11 年之前
父节点
当前提交
317fd13c7a
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      docs/intro/reusable-apps.txt

+ 7 - 0
docs/intro/reusable-apps.txt

@@ -128,6 +128,13 @@ this. For a small app like polls, this process isn't too difficult.
        This helps others looking for Django apps identify your app as Django
        This helps others looking for Django apps identify your app as Django
        specific.
        specific.
 
 
+       The application names (that is, the final dotted part of the
+       path to the module containing ``models.py``) defined in
+       :setting:`INSTALLED_APPS` *must* be unique. Avoid using the
+       same name as any of the Django :doc:`contrib packages
+       </ref/contrib/index>`, for example ``auth``, ``admin`` or
+       ``messages``.
+
 2. Move the ``polls`` directory into the ``django-polls`` directory.
 2. Move the ``polls`` directory into the ``django-polls`` directory.
 
 
 3. Create a file ``django-polls/README.rst`` with the following contents:
 3. Create a file ``django-polls/README.rst`` with the following contents: