Skip to content

Instantly share code, notes, and snippets.

@geekyarthurs
Created December 2, 2020 12:10
Show Gist options
  • Save geekyarthurs/f21f30a27187f53a2027773918044a3b to your computer and use it in GitHub Desktop.
Save geekyarthurs/f21f30a27187f53a2027773918044a3b to your computer and use it in GitHub Desktop.
python
urlpatterns = [
path("/<str:slug>", someRandomView, name="home"),
path("/<int:pk>", someRandomProfile, name="home_profile")
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment