Why is my admin not showing up in Django but my site still shows and works?

I am working with Django and as I try to pull up my admin page typing in http://127.0.0.1:8000/admin, I get this DoesNotExist at /admin/login error. But the funny thing is my actual site that I am building is still showing up when I run the server. And the tags work. All was working until I added 'taggit', to the Installed Apps on settings.py and when I added tags to the models.py and made migrations and such. I have no idea why the admin is not showing.

-Chris

I've attached a screenshot below of what I am seeing.

The Error Screen

Back to Top