[Fixed]-Django-datatable won't be added to INSTALLED_APPS

1👍

Look at example/settings.py in the library:

INSTALLED_APPS = (
    # ...
    'table',
    # Uncomment the next line to enable the admin:
    # 'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
)

Yes, just adding table is correct.

Leave a comment