mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
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")
|