mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Currency model admin now supports import / export
This commit is contained in:
parent
cb5db332d3
commit
f707dd3430
@ -1,9 +1,14 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
|
from import_export.admin import ImportExportModelAdmin
|
||||||
|
|
||||||
from .models import Currency
|
from .models import Currency
|
||||||
|
|
||||||
|
|
||||||
class CurrencyAdmin(admin.ModelAdmin):
|
class CurrencyAdmin(ImportExportModelAdmin):
|
||||||
list_display = ('symbol', 'suffix', 'description', 'value', 'base')
|
list_display = ('symbol', 'suffix', 'description', 'value', 'base')
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user