mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
15 lines
293 B
Python
15 lines
293 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.contrib import admin
|
|
|
|
from .models import StockItemLabel
|
|
|
|
|
|
class StockItemLabelAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ('name', 'description', 'label')
|
|
|
|
|
|
admin.site.register(StockItemLabel, StockItemLabelAdmin)
|