6 lines
132 B
Python
6 lines
132 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
def parts(request):
|
|
return render(request, 'partsdb/parts.html')
|