You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
374 B

  1. from django.contrib import admin
  2. from .models import Project, HonoraryCertificate, Library, IFG, Travel
  3. @admin.register(Project)
  4. class ProjectAdmin(admin.ModelAdmin):
  5. readonly_fields = ('pid',)
  6. admin.site.register([
  7. HonoraryCertificate,
  8. Library,
  9. IFG,
  10. Travel,
  11. ])