2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-20 19:56:31 +00:00

Added supplier web interface

- Display list of suppliers
- Supplier detail page
- Supplier part detail page
- Part detail now includes list of supplier parts
This commit is contained in:
Oliver
2018-04-14 16:26:26 +10:00
parent ce854e3119
commit 6a98846a8f
15 changed files with 169 additions and 11 deletions

@@ -64,3 +64,8 @@ def track(request, pk):
return render(request, 'part/track.html', {'part': part})
def suppliers(request, pk):
part = get_object_or_404(Part, pk=pk)
return render(request, 'part/supplier.html', {'part' : part})