summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views
AgeCommit message (Collapse)Author
2015-03-02[1.8.x] Fixed #24439 -- Removed incorrect make_object_list attributes in CBV ↵Andrew Pinkham
docs. Backport of fea45eff5a2f2ad10b2788603db80e5a4fe6be06 from master
2015-02-03[1.8.x] Fixed broken links in class based views flattend index; refs #24250.Tim Graham
Backport of 9a391fbd6102176d576aa96ed3aeee9e9661b455 from master
2015-02-03[1.8.x] Fixed #24250 -- Corrected mistakes in FormMixin docs.Tim Graham
Backport of 5d193d042a3cc49033f0e8b5125913650d779496 from master
2015-02-03[1.8.x] Fixed #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. Backport of 2133f31 from master. Conflicts: docs/topics/http/shortcuts.txt tests/generic_views/test_base.py
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.
2014-08-23Fixed #22154 -- Added "Built-in" to some class-based views titles.Tim Graham
2014-08-22Fixed #23343 -- Typo in docs/ref/class-based-views/generic-date-based.txt.Tim Graham
2014-08-19Fixed #21801 -- Documented SingleObjectMixin.get_context_data() requires the ↵Tim Graham
object attribute.
2014-08-15Fixed #18355 -- Added ordering options to list based generic views.Peter Harley
Added MultipleObjectMixin.ordering and get_ordering(). Refs #21450.
2014-08-13Refs #23276 -- Added missing url() in some places.Collin Anderson
2014-07-26Fixed #23106 -- Updated class-based view reference title.David Hoffman
2014-07-16Fixed reference to pk in RedirectView.get_redirect_url doc.Bartek Ciszkowski
2014-04-16Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.chriscauley
Thanks tomwys for the suggestion.
2014-04-03Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham
Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
2014-03-24Removed versionadded/changed annotations for 1.6.Tim Graham
2014-03-22Made ModelForms raise ImproperlyConfigured if the list of fields is not ↵Tim Graham
specified. Also applies to modelform(set)_factory and generic model views. refs #19733.
2014-02-25Fixed docs typos.Szczepan Cieślik
2014-02-22Fixed #22113 -- changed object_name to model_name in CBV docs.Marcin Sokół
Thanks to trac user nikunj.sg for the report.
2014-02-21Fixed #22112 -- Added RedirectView.pattern_name to CBV flattened indexAlasdair Nicol
Also moved accessor method get_redirect_url next to its attribute url for consistency with the other views. Thanks nikunj.sg for the report
2014-02-09Fixed inaccuracies in generic mixins documentation.Baptiste Mispelon
2014-01-16Fixed #21768 -- Corrected TemplateView context section.Tim Graham
Thanks nedbatchelder for the report and claudep for the patch.
2013-11-19Fixed the base class note in the Date Views docs.Rocky Meza
2013-11-08Fixed #21396: Document backwards-incompatible change in ↵Baptiste Mispelon
RedirectView.get_redirect_url. Thanks to Tim for the review.
2013-11-06Fixed typos in documentation.Baptiste Mispelon
2013-09-27Fixed malformed directive in CBV date-based-mixins docs.Carl Meyer
2013-09-21Fixed #21133 --Clarifed documentation about strftime formatting.Curtis Maloney
2013-08-22Fixed #20944 -- Removed inaccurate statement about View.dispatch().Marc Tamlyn
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-08-09Improved queryset handling and docs for (Single|Multiple)ObjectMixin.Loic Bistuer
2013-08-06Fixed #20852 - Fixed incorrectly generated left quotes in docs.Dominic Rodger
Sphinx generates left single quotes for apostrophes after code markup, when right single quotes are required. The easiest way to fix this is just by inserting the unicode character for a right single quote. Instances of the problem were found by looking for ">‘" in the generated HTML.
2013-07-25Added versionadded directive missing from b7bd708.Aymeric Augustin
2013-07-11Fixed #20733 -- Typo in docs/ref/class-based-views/generic-display.txtTim Graham
Thanks ijl20@ for the report.
2013-06-25Doc cleanup for FormMixin.prefix; refs #18872.Tim Graham
2013-06-24Fixed #20644 -- Add ModelFormMixin.fields to the CBV flattened indexBaptiste Mispelon
Thanks to Tim Graham for the report and review.
2013-06-22Added missing `versionadded` for `FormMixin.prefix`.Simon Charette
2013-06-22Fixed #18872 -- Added prefix to FormMixinGilberto Gonçalves
Thanks @ibustama for the initial patch and dragonsnaker for opening the report.
2013-06-14Merge pull request #1271 from batisteo/ticket-20565Marc Tamlyn
Fixed #20565 -- Added template examples for GCBV.
2013-06-14Fixed #20565 -- Added template examples for GCBV.Baptiste Darthenay
Thanks to David Reitter for the report, and to Marc Tamlyn and Baptiste Mispelon for the review.
2013-06-14Fixed #15273 -- Extend RedirectView to allow reversal by name.Marc Tamlyn
Thanks to @DrMeers for the report and @ludwigkraatz for the initial patch.
2013-06-05Proofed the 1.6 release notesTim Graham
2013-06-03Fixed #20545 - Made class-based view MRO lists consistent.Tim Graham
Thanks wim@ for the suggestion.
2013-05-22Fixed #20478 – Added support for HTTP PATCH method in generic views.Krzysztof Jurewicz