본문 바로가기
Error

django.template.exceptions.TemplateDoesNotExist: admin/import_export/change_list_import_export.html

by reo.l 2021. 6. 10.

장고 어드민에서 데이터를 파일로 import, export 하기 위해 pip를 하고 어드민 클래스에 상속하고 runserver를 돌렸더니,,

 

django.template.exceptions.TemplateDoesNotExist: admin/import_export/change_list_import_export.html

 

다음과 같은 에러가 발생하였다. 해결방법은 앱에다가 추가해주면 해결된다.

 

INSTALLED_APPS = [
    'import_export',
]

 

댓글