Skip to content

Instantly share code, notes, and snippets.

@bmease
Created September 2, 2013 21:56
Show Gist options
  • Save bmease/6417600 to your computer and use it in GitHub Desktop.
Save bmease/6417600 to your computer and use it in GitHub Desktop.
from django.views.generic import ListView, DetailView
from .models import Drink
class DrinkListView(ListView):
model = Drink
class DrinkDetailView(DetailView):
model = Drink
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment