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.

18 lines
511 B

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