Guest User

Untitled

a guest
Apr 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class RestaurantDetailView(DetailView):
  2. pk_url_kwarg = 'id'
  3. queryset = Restaurant.objects.all()
  4.  
  5. def get_context_data(self, **kwargs):
  6. context = super().get_context_data(**kwargs)
  7. return context
Add Comment
Please, Sign In to add comment