JourneyJoker/auction/views.py

9 lines
194 B
Python
Raw Normal View History

2019-12-24 13:41:49 +00:00
from django.shortcuts import render
2020-01-22 17:32:13 +00:00
from django.views.generic import CreateView
from auction.models import Inquiry
2019-12-24 13:41:49 +00:00
# Create your views here.
2020-01-22 17:32:13 +00:00
class InquiryView(CreateView):
model = Inquiry