2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

Added 'part tracking' page

- e.g. /part/<pk>/track
This commit is contained in:
Oliver
2018-04-14 00:46:18 +10:00
parent eec725d90f
commit 63f7fe640c
9 changed files with 38 additions and 6 deletions

View File

@ -74,6 +74,11 @@ def stock(request, pk):
return render(request, 'part/stock.html', {'part': part})
def track(request, pk):
part = get_object_or_404(Part, pk=pk)
return render(request, 'part/track.html', {'part': part})
#def results(request, question_id):
# response = "You're looking at the results of question %s."