10 lines
203 B
Python
10 lines
203 B
Python
from django.shortcuts import render
|
|
from django.views.generic.list import ListView
|
|
|
|
from .models import Vehicle
|
|
|
|
|
|
class VehicleList(ListView):
|
|
template_name = 'vehicle_list.html'
|
|
model = Vehicle
|