2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-09 15:10:54 +00:00

More admin updates

This commit is contained in:
Oliver Walters
2017-03-28 17:59:28 +11:00
parent a082eb2c81
commit 155151e98b
3 changed files with 13 additions and 4 deletions

View File

@ -2,5 +2,8 @@ from django.contrib import admin
from .models import Supplier, SupplierPart
admin.site.register(Supplier)
class SupplierAdmin(admin.ModelAdmin):
list_display=('name','URL','contact')
admin.site.register(Supplier, SupplierAdmin)
admin.site.register(SupplierPart)