Opened 17 years ago

Closed 17 years ago

#4006 closed (duplicate)

Same meaning, different parameters names in newforms.*Field / db.models.*Field

Reported by: tonnzor <tonn81@…> Owned by: Adrian Holovaty
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

The same as a tol of developers I use Django DB model and newforms, but I found them a bit confusing and not as elegant as possible.

They uses different attribute names for defining the same thing:

Moduledb.models.*Fieldnewforms.*Field
Maximum length of fieldmaxlengthmax_length
Whether field can be empty or notblankrequired

(maybe more)

I'm sure that if things have the same meaning, they should have the same name.

Change History (1)

comment:1 by Simon G. <dev@…>, 17 years ago

Resolution: duplicate
Status: newclosed

max_length vs maxlength is being resolved (e.g. #2101 and here). I agree that the blank/null distinction in the models is slightly confusing, but it's quite distinct to the newforms "required" field - which IMO is correctly named.

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