Skip to content

Instantly share code, notes, and snippets.

@godfather68
Created June 6, 2020 09:13
Show Gist options
  • Save godfather68/84c407ae78195077fee8fbba44ea7f44 to your computer and use it in GitHub Desktop.
Save godfather68/84c407ae78195077fee8fbba44ea7f44 to your computer and use it in GitHub Desktop.
from django.urls import path
from . import views
urlpatterns = [
path('', views.all_post, name='posts'),
path('', views.post_detail, name='post_detail'),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment