Ticket #18476: ticket18476.diff

File ticket18476.diff, 710 bytes (added by Renato Oliveira, 12 years ago)

Just added a reference to the url tag

  • docs/intro/tutorial03.txt

    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  
    531531own URLconf, they can be placed under "/polls/", or under "/fun_polls/", or
    532532under "/content/polls/", or any other path root, and the app will still work.
    533533
     534The Django template language also provides a tag to handle urls, see the
     535:doc:`template guide </topics/templates/builtins/url>`.
     536
    534537All the poll app cares about is its relative path, not its absolute path.
    535538
    536539When you're comfortable with writing views, read :doc:`part 4 of this tutorial
Back to Top