Last active
August 2, 2021 19:01
-
-
Save sarahboyce/0538c88119effc6b6274c6ee6f395c21 to your computer and use it in GitHub Desktop.
medium - The Power of Django's Generic Views - views.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.views.generic.list import ListView | |
| from accommodation.models import Accommodation | |
| class AccommodationListView(ListView): | |
| model = Accommodation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment