mirror of
https://github.com/inventree/InvenTree.git
synced 2026-09-11 06:59:04 +00:00
- Parent can be null (top-level category) - Parent can be other PartCategory
6 lines
157 B
Python
6 lines
157 B
Python
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
|
|
def index(request):
|
|
return HttpResponse("Hello world. This is the parts page")
|