Skip to content

Instantly share code, notes, and snippets.

@sarahboyce
Created August 2, 2021 19:01
Show Gist options
  • Select an option

  • Save sarahboyce/de7a8fe9d470d069e1a67dd1051687e1 to your computer and use it in GitHub Desktop.

Select an option

Save sarahboyce/de7a8fe9d470d069e1a67dd1051687e1 to your computer and use it in GitHub Desktop.
medium - The Power of Django's Generic Views - accommodation/urls.py example
from django.urls import path
from accommodation.views import AccommodationListView
urlpatterns = [
path("", AccommodationListView.as_view(), name="accommodation-list"),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment