mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2024-11-17 06:19:26 +08:00
11 lines
414 B
Python
11 lines
414 B
Python
from django.contrib import admin
|
|
from .models import EquipmentGroup
|
|
from simple_history.admin import SimpleHistoryAdmin
|
|
|
|
|
|
@admin.register(EquipmentGroup)
|
|
class EquipmentGroupAdmin(SimpleHistoryAdmin):
|
|
readonly_fields = ['status', 'dated_added',
|
|
'last_updated', 'last_updated_by']
|
|
list_display = ('name', 'status', 'date_added',
|
|
'last_updated', 'last_updated_by')
|