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

12345678910
  1. from django.contrib import admin
  2. from django.contrib.redirects.models import Redirect
  3. @admin.register(Redirect)
  4. class RedirectAdmin(admin.ModelAdmin):
  5. list_display = ('old_path', 'new_path')
  6. list_filter = ('site',)
  7. search_fields = ('old_path', 'new_path')
  8. radio_fields = {'site': admin.VERTICAL}