Starting on Django

when I run manage.py runserver I get this:

can you show your urls.py?

you probably havn’t set anything as the ‘empty’ url. If you type polls/ or admin/ after your 127.0.0.1:8000 it should work.

Yes, that worked! Thanks! Here is the urls.py:
image

That’s great!

If you change it to

urlpatterns = [
    path('', include('polls.urls'))

you should be directed to the polls app when going to your 127.0.0.1:8000

PS: you don’t have to put screenshots in here. Just use ``` in a line above and under your code and it will formated like mine :slight_smile:

ok, thanks :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: :slight_smile: