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
378 B

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