Opened 16 years ago

Closed 16 years ago

#6878 closed (duplicate)

Add ordering to newforms classes

Reported by: David Cramer Owned by: nobody
Component: Forms Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I'd like to propose adding an ordering attribute to a Meta class in newforms to allow overriding the field ordering for things like as_p.

e.g.

class Form:
    name = Char
    text = Char

    class Meta:
        ordering = ('text', 'name')

Change History (1)

comment:1 by James Bennett, 16 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #5986, which has several proposals and recent activity.

Note: See TracTickets for help on using tickets.
Back to Top