mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-02 05:26:45 +00:00
22 lines
524 B
Python
22 lines
524 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.contrib import admin
|
|
|
|
from import_export.admin import ImportExportModelAdmin
|
|
|
|
from .models import Currency, InvenTreeSetting
|
|
|
|
|
|
class CurrencyAdmin(ImportExportModelAdmin):
|
|
list_display = ('symbol', 'suffix', 'description', 'value', 'base')
|
|
|
|
|
|
class SettingsAdmin(ImportExportModelAdmin):
|
|
|
|
list_display = ('key', 'value', 'description')
|
|
|
|
|
|
admin.site.register(Currency, CurrencyAdmin)
|
|
admin.site.register(InvenTreeSetting, SettingsAdmin)
|