#1811 closed defect (fixed)
Small inconsistency in the Django overview [documentation issue]
Reported by: | Owned by: | Jacob | |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
There is a small inconsistency in the Django overview (in the documentation : the overview.txt file).
In the Design your URLs section, the view to call given the example URL "/articles/2005/05/39323/" is mysite.views.article_detail, not myproject.news.views.article_detail.
And in the section Design your templates, I don't know if that's intended but the code that is given is for the article_detail.html template, not year_archive.html; and I would say we expect to see the latter.
Change History (3)
comment:1 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 by , 19 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
The view is not mysite.news.views.article_detail, it's mysite.views.article_detail (without the news bit).
And now the description shouldn't mention article.get_reporter as a function call, because it isn't there anymore.
:)
comment:3 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
(In [2867]) Fixed #1811 -- Fixed some inconsistencies in docs/overview.txt. Thanks, quarkcool@…