Changes between Version 2 and Version 3 of Ticket #27361


Ignore:
Timestamp:
Oct 19, 2016, 8:53:06 AM (8 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27361

    • Property Component UncategorizedDocumentation
    • Property Triage Stage UnreviewedReady for checkin
    • Property Summary Small clean up on forms api documentationUse "from django import forms" in forms api examples
  • Ticket #27361 – Description

    v2 v3  
     1It's more common to define forms using a style like:
     2{{{
     3from django import forms
     4
     5class PersonForm(forms.Form):
     6   first_name = forms.CharField()
     7}}}
     8than `from django.forms import Form, CharField`.
Back to Top