mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
12 lines
258 B
Python
12 lines
258 B
Python
from django.contrib import admin
|
|
from import_export.admin import ImportExportModelAdmin
|
|
|
|
from .models import Company
|
|
|
|
|
|
class CompanyAdmin(ImportExportModelAdmin):
|
|
list_display = ('name', 'website', 'contact')
|
|
|
|
|
|
admin.site.register(Company, CompanyAdmin)
|