index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
views
/
generic
/
list.py
Age
Commit message (
Expand
)
Author
2024-10-15
Fixed #35682 -- Updated docstrings for base view classes which require a resp...
Yash
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2020-02-04
Simplified imports from django.db and django.contrib.gis.db.
Nick Pope
2019-06-28
Fixed #30400 -- Improved typography of user facing strings.
Jon Dufresne
2017-12-04
Fixed #28860 -- Removed unnecessary len() calls.
Дилян Палаузов
2017-11-07
Fixed #28719 -- Added a helpful exception if MultipleObjectTemplateResponseMi...
Bjorn Kristinsson
2017-03-03
Refs #27656 -- Updated django.views docstring verbs according to PEP 257.
Anton Samarchyan
2017-02-07
Converted usage of ugettext* functions to their gettext* aliases
Claude Paroz
2017-02-01
Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.
Vytis Banaitis
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-18
Refs #23919 -- Removed six.<various>_types usage
Claude Paroz
2017-01-18
Refs #23919 -- Removed encoding preambles and future imports
Claude Paroz
2016-04-08
Fixed E128 flake8 warnings in django/.
Tim Graham
2016-04-04
Fixed W503 flake8 warnings.
Tim Graham
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-08-15
Fixed #18355 -- Added ordering options to list based generic views.
Peter Harley
2013-11-28
Fixed E125 pep8 warnings
Christopher Medrela
2013-10-21
Fixed #21288 -- Fixed E126 pep8 warnings
Alasdair Nicol
2013-08-09
Improved queryset handling and docs for (Single|Multiple)ObjectMixin.
Loic Bistuer
2013-05-18
Fixed #20235 -- Use self.object_list if object_list not present in get_contex...
Matthew Somerville
2013-02-05
Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.
Simon Charette
2012-11-21
Add orphans support to MultipleObjectMixin
Chris Beaven
2012-11-17
Merge pull request #467 from tomchristie/page-kwarg
Jannis Leidel
2012-11-04
Fixed py3 compatibility for 5a00a57aa591c766f5ee1d8c59b64618d74fe191
Preston Holmes
2012-11-04
Fixed #19240 -- include pagination error details in ListView 404
Preston Holmes
2012-10-25
Add 'page_kwarg' attribute to `MultipleObjectMixin`, removing hardcoded 'page'.
Tom Christie
2012-06-11
Fixed #18451 -- Vastly improved class based view documentation.
Jannis Leidel
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-05-24
Removed unneeded smart_str in generic views.
Claude Paroz
2012-05-22
Fixed #18113 -- Corrected get_template_names docstrings.
Claude Paroz
2012-05-17
Fixed #17535 -- Optimized list generic views.
Aymeric Augustin
2012-04-06
Fixed #16074 -- Added ContextMixin to class-based generic views to handle get...
Claude Paroz
2011-07-13
Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...
Jannis Leidel
2011-04-22
Fixed #15698 -- Fixed inconsistant handling of context_object_name in paginat...
Jannis Leidel
2011-03-15
Fixed #15575 -- Corrected handling of pagination in generic views to match do...
Russell Keith-Magee
2011-02-14
Fixed #15287 -- Added translation markers to user-facing error messages in cl...
Russell Keith-Magee
2011-02-14
Fixed #15298 -- Raise a better error when a TemplateResponseMixin doesn't hav...
Russell Keith-Magee
2011-02-14
Fixed #15272 -- Altered generic views to use the guaranteed untranslated obje...
Russell Keith-Magee
2011-01-27
Fixed #15061 -- Removed a redundant method implementation in the class-based ...
Russell Keith-Magee
2011-01-08
Fixed inconsistency in ListView's pagination (short datasets should also trig...
Andrew Godwin
2011-01-03
Fixed #14878 -- Clarified the way verbose_name_plural is used in generic list...
Russell Keith-Magee
2010-12-09
Fixes #14873 -- A paginated ListView with a List instead of queryset produces...
Chris Beaven
2010-12-05
Fixed #14773 -- Modified MultipleObjectMixin to allow for custom paginators. ...
Russell Keith-Magee
2010-10-28
Fixed #14504 -- Corrected the way object_list is used in ListView to avoid ov...
Russell Keith-Magee
2010-10-18
Fixed #6735 -- Added class-based views.
Russell Keith-Magee