7 lines
244 B
Python
7 lines
244 B
Python
from django.contrib import admin
|
|
from .models import ESGFieldReport
|
|
|
|
|
|
@admin.register(ESGFieldReport)
|
|
class ESGFieldReportAdmin(admin.ModelAdmin):
|
|
list_display = ["batch", "women_employed", "total_workers", "fair_wage_paid", "report_date"]
|