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.

admin.py 370B

1234567891011121314
  1. from django.contrib import admin
  2. from oscar.core.loading import get_model
  3. class UserAddressAdmin(admin.ModelAdmin):
  4. readonly_fields = ('num_orders',)
  5. class CountryAdmin(admin.ModelAdmin):
  6. search_fields = ('name',)
  7. admin.site.register(get_model('address', 'useraddress'), UserAddressAdmin)
  8. admin.site.register(get_model('address', 'country'), CountryAdmin)