darklow / django-suit

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

Suit & Autocomplete_light #167

Open IvanSingular opened 10 years ago

IvanSingular commented 10 years ago

Hi Darklow !

Congratulations for your excelent Suit !

I have made tests here and tried use autocomplete_light (https://github.com/yourlabs/django-autocomplete-light) with suit for a week but without the expected result. Nothing happens. May be you can customise your demo to explain the integrations with autocomplete_light.

Best regards.

Ivan

metzlar commented 10 years ago

Same here,

kind regards,

Ivan :)

darklow commented 10 years ago

@IvanSingular

May be you can customise your demo to explain the integrations with autocomplete_light.

I have never tried using django-suit with autocomplete_light app, so i guess it is not just a matter of setup, but it also needs new CSS and templates adjustments. I'll add it to feature list.

metzlar commented 10 years ago

I made it work by adding a admin/base_site.html template to autocomplete_light see: https://github.com/metzlar/django-autocomplete-light/commit/d03e3a0fa49c0d9dd20663067c19ff89f6e1a114

Make sure your INSTALLED_APPS are in the correct order, mine looks like this:

INSTALLED_APPS = (
    'autocomplete_light',
    'suit',            
    'cms',
    'myapp',
    'django.contrib.admin',
)