mirror of
https://github.com/inventree/InvenTree.git
synced 2026-02-10 17:09:11 -06:00
11 lines
236 B
Python
11 lines
236 B
Python
from django.contrib import admin
|
|
|
|
from .models import UniquePart
|
|
|
|
|
|
class UniquePartAdmin(admin.ModelAdmin):
|
|
list_display = ('part', 'revision', 'serial', 'status', 'creation_date')
|
|
|
|
|
|
admin.site.register(UniquePart, UniquePartAdmin)
|