#35012: Admin form visual regression
-------------------------------+--------------------------------------
     Reporter:  James Gillard  |                    Owner:  nobody
         Type:  Bug            |                   Status:  new
    Component:  contrib.admin  |                  Version:  dev
     Severity:  Normal         |               Resolution:
     Keywords:                 |             Triage Stage:  Unreviewed
    Has patch:  0              |      Needs documentation:  0
  Needs tests:  0              |  Patch needs improvement:  0
Easy pickings:  0              |                    UI/UX:  1
-------------------------------+--------------------------------------

Comment (by James Gillard):

 Here's a zip containing a
 [https://code.djangoproject.com/attachment/ticket/35012/repro.zip minimal
 reproduction], and just the models.py and admin.py files below. The issue
 is visible with only 2 fields, but I've included 3 as that was what my
 setup has.


 {{{#!python
 class Foo(models.Model):
     a = models.CharField(max_length=200)
     b = models.CharField(max_length=200)
     c = models.CharField(max_length=200)
 }}}

 {{{#!python
 @admin.register(Foo)
 class FooAdmin(admin.ModelAdmin):
     fieldsets = (
         (
             None,
             {
                 "fields": (("a", "b", "c"),),
             },
         ),
     )
 }}}

 [[Image(repro.png, 800px)]]

-- 
Ticket URL: <https://code.djangoproject.com/ticket/35012#comment:7>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/0107018c367dd299-15eaa630-a724-402c-9048-7e9662c82823-000000%40eu-central-1.amazonses.com.

Reply via email to