Skip to content

Instantly share code, notes, and snippets.

@rightx2
Created October 31, 2016 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rightx2/521745778cca83e8626035d59d371dff to your computer and use it in GitHub Desktop.
Save rightx2/521745778cca83e8626035d59d371dff to your computer and use it in GitHub Desktop.
DetailView url_kwarg
from django.views.generic import DetailView
from orders.models import Order
class OrderDetailView(DetailView):
model = Order
context_object_name = 'order'
slug_url_kwarg = 'merchant_uid'
slug_field = 'merchant_uid'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment