Refs #23276 -- Added missing url() in some places.

This commit is contained in:
Collin Anderson 2014-08-13 14:09:31 -04:00 committed by Collin Anderson
parent 468236889f
commit e5376999fa
6 changed files with 11 additions and 9 deletions

View file

@ -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::