diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index fd3a04b..b44eb7b 100644
a
|
b
|
decoupling is to make it easy to plug-and-play URLs. Now that polls are in their
|
531 | 531 | own URLconf, they can be placed under "/polls/", or under "/fun_polls/", or |
532 | 532 | under "/content/polls/", or any other path root, and the app will still work. |
533 | 533 | |
| 534 | The Django template language also provides a tag to handle urls, see the |
| 535 | :doc:`template guide </topics/templates/builtins/url>`. |
| 536 | |
534 | 537 | All the poll app cares about is its relative path, not its absolute path. |
535 | 538 | |
536 | 539 | When you're comfortable with writing views, read :doc:`part 4 of this tutorial |