[Answered ]-Django admin site

2👍

Django is having trouble loading your urls file (which is why it thinks you don’t have any urls configured).

From your INSTALLED_APPS, it appears that your site is named micopiloto, not your app – are you sure that micopiloto.views.home is the right path to your views?

If you’ve already created an app, make sure your urls point to that, not the site; if you haven’t created an app, you should do that first.

👤Amber

Leave a comment