Commit a67bf4be authored by Anton Strogonoff's avatar Anton Strogonoff Committed by Tim Graham
Browse files

[1.8.x] Used consistent capitalization and hyphenation of "class-based views" in docs.

Backport of 20787b5c from master
parent 3caa7a23
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -376,9 +376,9 @@ Donald Stufft

Marc Tamlyn
    Marc started life on the web using Django 1.2 back in 2010, and has never
    looked back. He was involved with rewriting the class based view
    looked back. He was involved with rewriting the class-based view
    documentation at DjangoCon EU 2012, and also helped to develop `CCBV`_, an
    additional class based view reference tool.
    additional class-based view reference tool.

    Marc is currently a full-time parent, part-time developer, and lives in
    Oxford, UK.
+1 −1
Original line number Diff line number Diff line
==============================
Built-in Class-based views API
Built-in class-based views API
==============================

Class-based views API reference. For introductory material, see the
+1 −1
Original line number Diff line number Diff line
@@ -352,7 +352,7 @@ example::
   use one of the ``add_message`` family of methods. It does not hide failures
   that may occur for other reasons.

Adding messages in Class Based Views
Adding messages in class-based views
------------------------------------

.. class:: views.SuccessMessageMixin
+1 −1
Original line number Diff line number Diff line
@@ -176,7 +176,7 @@ The functions defined in this module share the following properties:
.. function:: method_decorator(decorator)

    Converts a function decorator into a method decorator. See :ref:`decorating
    class based views<decorating-class-based-views>` for example usage.
    class-based views<decorating-class-based-views>` for example usage.

.. function:: decorator_from_middleware(middleware_class)

+1 −1
Original line number Diff line number Diff line
.. _Generic views:

==================================
Built-in Class-based generic views
Built-in class-based generic views
==================================

Writing Web applications can be monotonous, because we repeat certain patterns
Loading