mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
7 lines
167 B
Python
7 lines
167 B
Python
from django.shortcuts import render, get_object_or_404
|
|
from django.http import HttpResponse
|
|
|
|
|
|
def index(request):
|
|
return HttpResponse("This is the Tracking page")
|