Код: Выделить всё
TemplateDoesNotExist at /admin/
admin/
.html
Request Method: GET
Request URL: http://localhost:8000/admin/
Django Version: 4.2.23
Exception Type: TemplateDoesNotExist
Exception Value: admin/.html
< /code>
Это admin.py в главном приложении. Он импортирует из двух вторичных приложений. < /P>
from django.contrib import admin
from user.models import Profile
admin.site.register(Profile)
from flights.models import Flight
admin.site.register(Flight)
from airports.models import Airport
admin.site.register(Airport)
Подробнее здесь: https://stackoverflow.com/questions/796 ... want-to-us