Ticket #13051: 13051_docs_patch.diff
File 13051_docs_patch.diff, 1.3 KB (added by , 15 years ago) |
---|
-
docs/topics/http/urls.txt
728 728 that has an instance namespace matching the application namespace (in 729 729 this example, an instance of the ``myapp`` called ``myapp``). 730 730 731 4. If there is no default application instance, Django will pick the first731 4. If there is no default application instance, Django will pick the last 732 732 deployed instance of the application, whatever its instance name may be. 733 733 734 734 5. If the provided namespace doesn't match an application namespace in … … 749 749 the instance ``bar``. 750 750 751 751 * If there is no current instance - say, if we were rendering a page 752 somewhere else on the site - ``myapp:index`` will resolve to the first752 somewhere else on the site - ``myapp:index`` will resolve to the last 753 753 registered instance of ``myapp``. Since there is no default instance, 754 the first instance of ``myapp`` that is registered will be used. This could754 the last instance of ``myapp`` that is registered will be used. This could 755 755 be ``foo`` or ``bar``, depending on the order they are introduced into the 756 756 urlpatterns of the project. 757 757