summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views
AgeCommit message (Collapse)Author
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
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