mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Refs #23276 -- Added missing url() in some places.
This commit is contained in:
parent
468236889f
commit
e5376999fa
6 changed files with 11 additions and 9 deletions
|
@ -15,7 +15,7 @@ MultipleObjectMixin
|
|||
* Use the ``page`` parameter in the URLconf. For example, this is what
|
||||
your URLconf might look like::
|
||||
|
||||
(r'^objects/page(?P<page>[0-9]+)/$', PaginatedView.as_view())
|
||||
url(r'^objects/page(?P<page>[0-9]+)/$', PaginatedView.as_view()),
|
||||
|
||||
* Pass the page number via the ``page`` query-string parameter. For
|
||||
example, a URL would look like this::
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue