Changeset 2871
- Timestamp:
- 05/09/06 10:31:03 (2 years ago)
- Files:
-
- django/trunk/docs/overview.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/overview.txt
r2867 r2871 184 184 185 185 For example, if a user requested the URL "/articles/2005/05/39323/", Django 186 would call the function ``mysite. news.views.article_detail(request,186 would call the function ``mysite.views.article_detail(request, 187 187 '2005', '05', '39323')``. 188 188 … … 235 235 means "Output the value of the article's headline attribute." But dots aren't 236 236 used only for attribute lookup: They also can do dictionary-key lookup, index 237 lookup and function calls (as is the case with ``article.get_reporter``).237 lookup and function calls. 238 238 239 239 Note ``{{ article.pub_date|date:"F j, Y" }}`` uses a Unix-style "pipe" (the "|"
