Opened 12 years ago
Closed 12 years ago
#18476 closed Cleanup/optimization (fixed)
Hard coded template link causes conflict with tutorial statement
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Component: | Documentation | Version: | 1.4 |
Severity: | Normal | Keywords: | tutorial |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
At the end of part 3 of the tutorial (https://docs.djangoproject.com/en/1.4/intro/tutorial03/) the following statement is made.
"The idea behind include() and URLconf decoupling is to make it easy to plug-and-play URLs. Now that polls are in their own URLconf, they can be placed under "/polls/", or under "/fun_polls/", or under "/content/polls/", or any other path root, and the app will still work."
Due to a hard link to '/polls/' in the index.html template code for polls (further up on the same page), simply changing the URLconf setting to '/fun_polls/' or similar won't be enough to get things working (all the way).
Not a big issue, but would be great to have that fixed to avoid confusion.
Thanks.
Attachments (2)
Change History (6)
comment:1 by , 12 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 12 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:3 by , 12 years ago
Has patch: | set |
---|---|
Owner: | removed |
Status: | assigned → new |
comment:4 by , 12 years ago
Owner: | set to |
---|---|
Resolution: | → fixed |
Status: | new → closed |
We should either use the url tag directly in the first template exemple, or introduce it in a new paragraph at the end of the tutorial 3.
In any case, we should then also use the url tag in the next part of the tutorial.