Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save sarahboyce/0538c88119effc6b6274c6ee6f395c21 to your computer and use it in GitHub Desktop.
medium - The Power of Django's Generic Views - views.py example
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