Changes between Initial Version and Version 1 of Ticket #34797


Ignore:
Timestamp:
Aug 24, 2023, 12:23:59 PM (10 months ago)
Author:
Mariusz Felisiak
Comment:

django-grappelli doesn't support Django 4.1 or 4.2. You should report this on their bugtracker.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34797

    • Property Resolutioninvalid
    • Property Status newclosed
    • Property Summary Django Admin radio fields admin.HORIZONTAL shows as verticalDjango Admin radio fields admin.HORIZONTAL shows as vertical with django-grapelli.
  • Ticket #34797 – Description

    initial v1  
    11Recently upgraded to Django 4.2.4 with Grappelli 3.0.7 and admin.ModelAdmin
    2 
     2{{{
    33class EmployeeAdmin(admin.ModelAdmin):
    44    form = EmployeeAdminForm
     
    1111    show_weekends = models.BooleanField(default=False, choices=((True,'Yes'),(False,'No')),help_text="Show weekends by default")
    1212        group_by_dept = models.BooleanField(default=True, choices=((True,'Department'),(False,'Workgroup')),verbose_name="Group by", help_text="Group employees by Department or Workgroup")
     13}}}
Back to Top