douglasmiranda / django-admin-bootstrap

Responsive Theme for Django Admin With Sidebar Menu
MIT License
879 stars 233 forks source link

Unable to import bootstrap_admin on django 3.0.3 #150

Closed samarthkathal closed 4 years ago

samarthkathal commented 4 years ago

I tried installing this package on a clean built of a working app running on django 3.0.3 (python version 3.8.1)

It is throwing a ModuleNotFoundError: No module named 'bootstrap_admindjango' error. this looks more like a typo. I am not much familiar with the project can anyone please look into this or atleast point me in the right direction?

Thanks.

2020-02-19-010452_1920x1080_scrot

douglasmiranda commented 4 years ago

You're missing a comma after "bootstrap_admin".

You wrote:

[
    'bootstrap_admin'
    'django.contrib.admin'
    ...

It should be:

[
    'bootstrap_admin',
    'django.contrib.admin'
    ...
samarthkathal commented 4 years ago

Yes, sorry about that. I got it working and forgot to close this. Thanks :)