summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views
AgeCommit message (Collapse)Author
2018-05-24[2.1.x] Documented DeletionMixin.delete().Claude Paroz
Backport of 96ea4f875b289aef3372caf7851dabf64347ce8c from master
2018-05-12Alphabetized imports in various docs.Mariusz Felisiak
Follow-up of d97cce34096043b019e818a7fb98c0f9f073704c and 7d3fe36c626a3268413eb86d37920f132eb4a54f.
2018-05-02Fixed #29375 -- Removed empty action attribute on HTML forms.CHI Cheng
2018-03-26Added a pagination example to ListView docs.AK
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2017-09-25Fixed #28627 -- Added slug converter to some path() examples in docs.Christopher Schäpers
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs.
2017-07-18Removed unneeded right quotes in docs to fix spelling errors.Tim Graham
A regression in pyenchant caused a problem: https://github.com/rfk/pyenchant/issues/93
2017-07-06Fixed #28331 -- Added ContextMixin.extra_context to allowing passing context ↵Bruno Alla
in as_view().
2017-06-28Fixed #28294 -- Doc'd request/args/kwargs attributes of class-based views.Mike Vasiliou
2017-06-06Fixed typo in docs/ref/class-based-views/mixins-single-object.txt.Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2017-01-04Fixed #27680 -- Linked to "Classy Class-Based Views" in docs.jpic
2016-06-01Fixed #26695 -- Clarified return value of View.options().Tim Graham
Thanks mmoreaux and DheerendraRathor.
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-03-21Fixed #26376 -- Clarifed meaning of 'search' in ↵Tim Graham
TemplateResponseMixin.get_template_names() docs.
2016-03-18Fixed #26375 -- Used a more generic name in a reusable template example.Tim Graham
2016-03-05Refs #26217 -- Fixed typo in docs/ref/class-based-views/generic-date-based.txt.Michal Petrucha
2016-03-01Fixed #26217 -- Added a warning about format strings to WeekArchiveView docs.Michal Petrucha
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-22Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
2016-01-11Fixed #25385 -- Allowed importing views.generic.View from views.View.Varun Sharma
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-10-23Fixed #25397 -- Documented class-based view context variable clash with ↵Jacek Bzdak
context processors.
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Refs #23656 -- Required FormMixin.get_form() form_class parameter to be ↵Tim Graham
optional. Per deprecation timeline.
2015-09-23Refs #24133 -- Removed legacy formatting syntax in success_url placeholders.Tim Graham
Per deprecation timeline.
2015-09-11Fixed #25382 -- Removed obsolete references to DateQuerySet.Renato Oliveira
2015-08-18Used consistent capitalization and hyphenation of "class-based views" in docs.Anton Strogonoff
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-04-24Fixed #24643 -- Added get_context_data() method to FormMixinAndrei Kulakov
2015-04-24Fixed #24695 -- Tidied up a couple of regexes in the CBV docsAlasdair Nicol
Thanks datakid for the report
2015-04-21Fixed #24682 -- Corrected a few generic editing view linksSteve Hiemstra
2015-03-02Fixed #24439 -- Removed incorrect make_object_list attributes in CBV docs.Andrew Pinkham
2015-02-03Fixed broken links in class based views flattend index; refs #24250.Tim Graham
2015-02-03Fixed #24250 -- Corrected mistakes in FormMixin docs.Tim Graham
2015-02-03Fixed #24168 -- Allowed selecting a template engine in a few APIs.Aymeric Augustin
Specifically in rendering shortcuts, template responses, and class-based views that return template responses. Also added a test for render_to_response(status=...) which was missing from fdbfc980. Thanks Tim and Carl for the review.
2015-01-18Changed RedirectView.permanent to False per deprecation timeline; refs #21587.Tim Graham
2015-01-17Fixed #24055 -- Keep reference to view class for resolve()Collin Anderson
2015-01-12Fixed #24133 -- Replaced formatting syntax in success_url placeholdersClaude Paroz
Thanks Laurent Payot for the report, and Markus Holtermann, Tim Graham for the reviews.
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-17Updated TemplateResponseMixin docs to reflect new behavior after refs #23789.Tim Graham
2014-11-25Fixed #21587 -- Added a warning for changing default of RedirectView.permanent.Berker Peksag
2014-11-21Fixed #21753 -- Raised exception when both `form_class` and `fields` are ↵Berker Peksag
specified.
2014-10-30Fixed #23656 -- Made FormMixin.get_form's form_class argument optional.Simon Charette
Thanks Tim Graham for the review.
2014-10-06Fixed #23597 -- Clarified the manager that ↵Ismail Badawi
{Single,Multiple}ObjectMixin.model uses.
2014-10-02Fixed #23482 -- Added SingleObjectMixin.query_pk_and_slugJon Dufresne
Enabling the attribute causes get_object() to perform its lookup using both the primary key and the slug.
2014-09-29Fixed #17638 -- Added crosslinks between topic and reference guides.Duane Hilton
Thanks oinopion for the suggestion and jarus for the initial patch.