Opened 12 years ago

Closed 12 years ago

#17804 closed Bug (fixed)

Django Admin's input for BigIntegerField should be larger

Reported by: Jerome Leclanche Owned by: nobody
Component: contrib.admin Version: 1.3
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: yes

Description

BigIntegerField's input is of class vIntegerField which defines width as 5em; that's appropriate for a 32-bit int, but not for a 64-bit one. It should have a width of 10em.

Change History (2)

comment:1 by Jannis Leidel, 12 years ago

Component: Uncategorizedcontrib.admin
Triage Stage: UnreviewedAccepted
Type: UncategorizedBug
UI/UX: set

comment:2 by Honza Král <Honza.Kral@…>, 12 years ago

Resolution: fixed
Status: newclosed

In [4db34e7b4fabe4f70bce9429ee9814eb6168dc72]:

Merge pull request #112 from bohyn/master

Django Admin's input for BigIntegerField should be larger, Fixes #17804

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