Opened 17 years ago

Closed 17 years ago

#5108 closed (invalid)

incorrect example url in

Reported by: anonymous Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords: pagination
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In The GenericViews documentation, when discussing pagination, there is a line:

/objects/?page=3

I believe it should be:

/objects/page3

This could prove confusing to those new to django/python

Change History (3)

comment:1 by anonymous, 17 years ago

comment:2 by Matt McClanahan <cardinal@…>, 17 years ago

You're misunderstanding the documentation. It's presenting two options for specifying a page parameter: First, using a urlconf parameter, which would match your '/objects/page3' URL. The second option is to use the query string, which doesn't involve a change to the urlconf.

comment:3 by Simon G. <dev@…>, 17 years ago

Resolution: invalid
Status: newclosed
Note: See TracTickets for help on using tickets.
Back to Top