admin.py 404 B

1234567891011121314151617181920
  1. from django.contrib import admin
  2. from hrs.models import Dept, Emp
  3. class DeptAdmin(admin.ModelAdmin):
  4. list_display = ('no', 'name', 'location')
  5. ordering = ('no', )
  6. class EmpAdmin(admin.ModelAdmin):
  7. list_display = ('no', 'name', 'job', 'sal', 'dept')
  8. search_fields = ('name', 'job')
  9. ordering = ('dept', )
  10. admin.site.register(Dept, DeptAdmin)
  11. admin.site.register(Emp, EmpAdmin)