Ticket #24250: 24250.diff

File 24250.diff, 726 bytes (added by Tim Graham, 9 years ago)
  • docs/ref/class-based-views/mixins-editing.txt

    diff --git a/docs/ref/class-based-views/mixins-editing.txt b/docs/ref/class-based-views/mixins-editing.txt
    index 0bfbcbd..5175047 100644
    a b FormMixin  
    8787
    8888        Renders a response, providing the invalid form as context.
    8989
    90     .. method:: get_context_data(**kwargs)
    91 
    92         Populates a context containing the contents of ``kwargs``.
    93 
    94     **Context**
    95 
    96     * ``form``: The form instance that was generated for the view.
    97 
    98     .. note::
    99 
    100         Views mixing ``FormMixin`` must provide an implementation of
    101         :meth:`form_valid` and :meth:`form_invalid`.
    102 
    103 
    10490ModelFormMixin
    10591--------------
    10692
Back to Top