9 lines
160 B
Python
9 lines
160 B
Python
from django.contrib import admin
|
|
|
|
from report.models import Report
|
|
|
|
|
|
@admin.register(Report)
|
|
class ReportAdmin(admin.ModelAdmin):
|
|
"""Report admin model."""
|