No Description

admin.py 221B

12345678
  1. # Register your models here.
  2. from django.contrib import admin
  3. from .models import Report
  4. @admin.register(Report)
  5. class ReportAdmin(admin.ModelAdmin):
  6. list_display = ('name', 'created_by', 'created_at', 'updated_at')