mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +00:00
17 lines
331 B
Python
17 lines
331 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.contrib import admin
|
|
|
|
from import_export.admin import ImportExportModelAdmin
|
|
|
|
from .models import InvenTreeSetting
|
|
|
|
|
|
class SettingsAdmin(ImportExportModelAdmin):
|
|
|
|
list_display = ('key', 'value')
|
|
|
|
|
|
admin.site.register(InvenTreeSetting, SettingsAdmin)
|