summaryrefslogtreecommitdiff
path: root/django/views/generic
Commit message (Expand)AuthorAgeFilesLines
* Refs #33263 -- Removed warning in BaseDeleteView when delete() method is over...Mariusz Felisiak2023-01-171-20/+0
* Refs #34118 -- Adopted asgiref coroutine detection shims.Carlton Gibson2022-12-201-4/+5
* Fixed #34062 -- Updated View.http_method_not_allowed() to support async.Antoine Lorence2022-09-291-1/+10
* Fixed #33611 -- Allowed View subclasses to define async method handlers.Carlton Gibson2022-04-071-1/+32
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-076-225/+378
* Refs #33263 -- Added warning to BaseDeleteView when delete() method is overri...Mariusz Felisiak2021-11-091-0/+20
* Fixed #21936 -- Allowed DeleteView to work with custom Forms and SuccessMessa...Carlton Gibson2021-07-141-2/+20
* Fixed #32260 -- Made View.as_view() do not use update_wrapper().Daniyal2021-03-301-6/+9
* Fixed #31789 -- Added a new headers interface to HttpResponse.Tom Carrick2020-09-141-2/+2
* Fixed #31877 -- Reverted "Fixed #19878 -- Deprecated TemplateView passing URL...Mariusz Felisiak2020-08-241-26/+4
* Refs #31877 -- Reverted "Fixes #31877 -- Used lazy() for TemplateView kwarg d...Mariusz Felisiak2020-08-241-2/+3
* Fixes #31877 -- Used lazy() for TemplateView kwarg deprecation warning.Adam Johnson2020-08-131-3/+2
* Fixed #31620 -- Added support for %V format to WeekMixin/WeekArchiveView.Hasan Ramezani2020-06-261-6/+11
* Fixed #19878 -- Deprecated TemplateView passing URL kwargs into context.Adam Johnson2020-03-231-4/+26
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-1/+1
* Removed "Don't do that" from docs and error messages.Adam Johnson2020-01-061-3/+4
* Refs #20456 -- Moved initialization of HEAD method based on GET to the View.s...Felipe Lee2019-10-301-2/+2
* Fixed #30400 -- Improved typography of user facing strings.Jon Dufresne2019-06-282-3/+3
* Fixed #29750 -- Added View.setup() hook for class-based views.François Freitag2018-12-211-3/+12
* Fixed #29903 -- Added error message for invalid WeekArchiveView week_format.Hasan Ramezani2018-10-291-4/+8
* Refs #23668 -- Removed passing default argument of current TZ to make_aware()...Jon Dufresne2018-01-181-1/+1
* Improved generic detail view error message for when pk or slug is missing.Vincent Poulailleau2018-01-171-3/+4
* Fixed #28985 -- Removed unneeded None checks before hasattr().Дилян Палаузов2018-01-032-2/+2
* Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов2017-12-042-2/+2
* Fixed #28795 -- Removed 'not in' checks and used dict.setdefault().Дилян Палаузов2017-11-141-2/+1
* Fixed #28719 -- Added a helpful exception if MultipleObjectTemplateResponseMi...Bjorn Kristinsson2017-11-071-1/+7
* Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов2017-11-061-1/+1
* Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus2017-09-201-1/+1
* Fixed #28082 -- Made BaseDateListView pass context from get_dated_items() to ...Sebastian Sassi2017-09-041-3/+5
* Fixed #28331 -- Added ContextMixin.extra_context to allowing passing context ...Bruno Alla2017-07-061-0/+3
* Fixed #28209 -- Made date-based generic views return a 404 rather than crash ...Adit Biswas2017-05-301-3/+12
* Fixed #28226 -- Replaced use of str.join() with concatenation.Tom2017-05-271-2/+2
* Refs #27795 -- Replaced many force_text() with str()Claude Paroz2017-04-271-8/+3
* Refs #27795 -- Removed unneeded force_text callsClaude Paroz2017-03-041-5/+6
* Refs #27656 -- Updated django.views docstring verbs according to PEP 257.Anton Samarchyan2017-03-035-283/+116
* Fixed #26911 -- Removed NoReverseMatch silencing in RedirectView.Grzegorz Tężycki2017-03-011-5/+2
* Imported django.http classes instead of django.http.Asif Saifuddin Auvi2017-02-271-6/+9
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-073-3/+3
* Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis2017-02-011-2/+2
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-254-12/+12
* Refs #23919 -- Removed unneeded force_str callsClaude Paroz2017-01-201-2/+2
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-193-9/+9
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-184-8/+0
* Added period in BaseFormView docstring.Collederas2016-12-081-1/+1
* Fixed #25181 -- Added localdate() function to get date in a different time zone.Jon Dufresne2016-08-311-1/+1
* Fixed #26207 -- Replaced dynamic classes with non-data descriptors for deferr...Anssi Kääriäinen2016-04-291-4/+0
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-082-12/+10
* Fixed W503 flake8 warnings.Tim Graham2016-04-041-2/+1