Created
August 2, 2021 19:01
-
-
Save sarahboyce/de7a8fe9d470d069e1a67dd1051687e1 to your computer and use it in GitHub Desktop.
medium - The Power of Django's Generic Views - accommodation/urls.py example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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