summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views
AgeCommit message (Collapse)Author
2014-01-16[1.6.x] Fixed #21768 -- Corrected TemplateView context section.Tim Graham
Thanks nedbatchelder for the report and claudep for the patch. Backport of c05b2f58e7 from master
2013-11-19[1.6.x] Fixed the base class note in the Date Views docs.Rocky Meza
Backport of 42197e31aa from master
2013-11-18[1.6.x] Fixed #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. Backport of c33d1ca1d98003de29cdecb6080b52c5c52139bd from master.
2013-11-08[1.6.x] Fixed #21396: Document backwards-incompatible change in ↵Baptiste Mispelon
RedirectView.get_redirect_url. Thanks to Tim for the review. Backport of f2e0266be766b0b6149377b90ae3ddc41c91c3fb from master.
2013-09-21[1.6.x] Fixed #21133 -- Clarifed documentation about strftime formatting.Curtis Maloney
Backport of 43a2ec7999 from master
2013-08-22[1.6.x] Fixed #20944 -- Removed inaccurate statement about View.dispatch().Marc Tamlyn
Backport of bac4d03ce6 from master
2013-07-25[1.6.x] Added versionadded directive missing from b7bd708.Aymeric Augustin
Backport of 5ed7ec9 from master.
2013-07-11[1.6.x] Fixed #20733 -- Typo in docs/ref/class-based-views/generic-display.txtTim Graham
Thanks ijl20@ for the report. Backport of ecd746191c from master
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
2013-05-21Fixed #20476 -- Typo.Aymeric Augustin
2013-05-20Fix typo in redirect view docsAlasdair Nicol
2013-05-18Fixed #20294 -- Documented context processors in TemplateResponseMixin.Zbigniew Siciarz
2013-05-16Fixed #20421 - Typo in class-based view docs.Tim Graham
2013-05-09Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and ↵Luke Plant
added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute.
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-04-15Fixed #20262 -- Replaced a reference to the wrong model in the CBV doc.Simon Charette
Thanks to mossplix for the review and bmispelon for the review.
2013-03-29Improved FormView docs in class-based views index.Tim Graham
Thanks Stefan Berder.
2013-03-22Added missing markup to docs.Tim Graham
2013-02-23Fixed #17094 - Typo in class-based views doc.Tim Graham
Thanks alej0 for the report.
2013-02-11Fixed #19044 -- Made `DeletionMixin` interpolate its `success_url`.Simon Charette
Thanks to nxvl and slurms for the initial patch, ptone for the review and timo for the documentation tweaks.
2013-02-01Documented ArchiveIndexView's date_list context variable.Aymeric Augustin
Refs #16218.
2013-02-01Fixed #19714 -- Updated documentation about TemplateView contextClaude Paroz
Thanks Aramgutang for the report. Refs #17228.
2013-01-30Changed "versionadded" after the decision to backport.Aymeric Augustin
Refs #19076.
2013-01-30Fixed #19076 -- Added content_type attribute to TemplateView.Aymeric Augustin
Thanks Gavin Wahl.
2013-01-02Fixed #19516 - Fixed remaining broken links.Tim Graham
Added -n to sphinx builds to catch issues going forward.
2013-01-01Fixed #19520 - Corrected some misleading docs about template_name_suffix.Tim Graham
Thanks jnns for the report.
2012-12-29Removed versionadded/changed annotations dating back to 1.4.Aymeric Augustin
2012-11-27Fixed #19239 - Added examples for generic date viewsTim Graham
Thank-you Daniel Greenfeld and Scott Nixon.
2012-11-22Clarified usage of as_view kwargs for setting arguments on class based viewsTim Graham
Thanks Dave McLain for the patch.
2012-11-21Add orphans support to MultipleObjectMixinChris Beaven
Fixes #7005
2012-11-17Merge pull request #467 from tomchristie/page-kwargJannis Leidel
Add 'page_kwarg' attribute to `MultipleObjectMixin`, removing hardcoded "page".
2012-11-13Fixed #19283 -- Fixed typo in imports in CBV docs.Aymeric Augustin
2012-11-09Formatting tweaks.Tom Christie
2012-11-09Include `versionadded 1.5` directiveTom Christie
2012-10-25Add 'page_kwarg' attribute to `MultipleObjectMixin`, removing hardcoded 'page'.Tom Christie
2012-09-22Fixed #16218 -- date_list order in generic CBVs.Aymeric Augustin
Thanks nnrcschmdt for the report and bpeschier for the initial version of the patch.
2012-09-18document changes for YearArchiveView.Collin Anderson
2012-09-08Fixed #15906 - Documented HEAD method in CBVs; thanks zsiciarz for the patch.Tim Graham
2012-09-08Fixed typo in commit for #15730; thanks Bruno Renié for the catch.Tim Graham
2012-09-08Fixed #18628 - Added methods/attributes to CBV docs. Thanks Daniel Greenfeld!Tim Graham
2012-09-08Fixed #15730 - Documented the as_view() method for CBVs.Tim Graham