mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 12:06:44 +00:00
11 lines
223 B
Python
11 lines
223 B
Python
from django.contrib import admin
|
|
|
|
from .models import Currency
|
|
|
|
|
|
class CurrencyAdmin(admin.ModelAdmin):
|
|
list_display = ('symbol', 'suffix', 'description', 'value', 'base')
|
|
|
|
|
|
admin.site.register(Currency, CurrencyAdmin)
|