darklow / django-suit

Modern theme for Django admin interface
http://djangosuit.com/
Other
2.32k stars 704 forks source link

Side-by-side dates in admin form not rendering both labels #641

Open gamesbook opened 7 years ago

gamesbook commented 7 years ago

If this is a bug please specify versions you're using first.

Django version: 1.10.7 Django Suit version: 2.0a1 (horizontal layout) Python version: 3.5.3

Issue:

When trying to display two date fields side-by-side, the label of the second date does not display (other side-by-side fields do display, as can be seen).

Code:

    fieldsets = [
        (None, {
            'classes': ('suit-tab', 'suit-tab-general',),
            'fields': ['organisation',  
                         ('date_requested', 'date_approved'),
                         ('requester', 'contact')]
        }),

Display:

dual_date_error

ghost commented 6 years ago

Confirming this bug with current version of Django:

Django version: 1.11.6 Django Suit version: 2.0a1 Python version: 3.5.2

gamesbook commented 6 years ago

Just hit me again today - any chance of a patch?