Skip to content

Instantly share code, notes, and snippets.

@H3lllfir3
Created May 9, 2020 20:16
Show Gist options
  • Select an option

  • Save H3lllfir3/31b5e752153ee4a81795f17c966d3689 to your computer and use it in GitHub Desktop.

Select an option

Save H3lllfir3/31b5e752153ee4a81795f17c966d3689 to your computer and use it in GitHub Desktop.
main url
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('polls/', include('polls.urls')),
path('admin/', admin.site.urls),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment