Hello!
Tell me how to make pagination in this format:
http://site.ru/queries/page2/ instead:
http://site.ru/queries/?page=2 Need to write twice in urls.py?
url(r'^queries/$', QueryListActive.as_view(), name='query_list'), url(r'^queries/page(?P<page>\d+)/$', QueryListActive.as_view(), name='query_list')