2016-06-30 16 views
0

Ich habe django-datatable installiert und ich möchte es in INSTALLED_APPS Liste hinzufügen.Django-Datentabelle wird nicht zu INSTALLED_APPS hinzugefügt

INSTALLED_APPS = (
    'django.contrib.auth', 
    'django.contrib.contenttypes', 
    'django.contrib.sessions', 
    'django.contrib.messages', 
    'django.contrib.staticfiles', 
    'rest_framework', 
    'django.contrib.admin', 
    'table', 
) 

Ist table korrekt? Wenn nicht, was soll ich tippen?

Antwort

1

Schauen Sie sich beispiels/settings.py in der Bibliothek:

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', 
) 

Ja, nur table Zugabe ist richtig.

+0

Ich habe es getan. Vielen Dank! – XhensB

Verwandte Themen