mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2024-11-17 06:19:26 +08:00
9 lines
240 B
Python
9 lines
240 B
Python
from django.contrib import admin
|
|
from .models import BreakageReport
|
|
|
|
|
|
class BreakageReportAdmin(admin.ModelAdmin):
|
|
list_display = ('id', 'transaction', 'resolved', 'timestamp')
|
|
|
|
|
|
admin.site.register(BreakageReport, BreakageReportAdmin)
|