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 a303572 commit c2b5ee0Copy full SHA for c2b5ee0
docs/topics/routing.rst
@@ -112,7 +112,7 @@ Here's an example for nested routings. When you configure the routings in parent
112
.. code-block:: python
113
114
urlpatterns = [
115
- path("app1/", include("src.app1.routings"), name="app1"),
+ path("app1/", include("app1.routings"), name="app1"),
116
]
117
118
and in child ``app1/routings.py``;
@@ -125,7 +125,7 @@ and in child ``app1/routings.py``;
125
re_path(r"chats/(\d+)/$", test_app, name="chats"),
126
127
128
-you can establish the connection via the path such like ``/app1/chats/5/``.
+This would resolve to a path such as ``/app1/chats/5/``.
129
130
ChannelNameRouter
131
-----------------
0 commit comments