﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1189	Extra Commas in Model Example	Brian Ray <bray@…>	Jacob	"In root/django/trunk/docs/forms.txt change Place class to:

{{{

    class Place(meta.Model):
        name = meta.CharField(maxlength=100)
        address = meta.CharField(maxlength=100, blank=True)
        city = meta.CharField(maxlength=50, blank=True)
        state = meta.USStateField()
        zip_code = meta.CharField(maxlength=5, blank=True)
        place_type = meta.IntegerField(choices=PLACE_TYPES)
        class META:
            admin = meta.Admin()

        def __repr__(self):
            return self.name

}}}

Note, remove extra commas."	defect	closed	Documentation	dev	minor	fixed	Place, Model, commas	bray@…	Unreviewed	0	0	0	0	0	0
