11 lines
314 B
Python
11 lines
314 B
Python
from django.contrib import admin
|
|
from django.contrib.redirects.models import Redirect
|
|
|
|
|
|
@admin.register(Redirect)
|
|
class RedirectAdmin(admin.ModelAdmin):
|
|
list_display = ("old_path", "new_path")
|
|
list_filter = ("site",)
|
|
search_fields = ("old_path", "new_path")
|
|
radio_fields = {"site": admin.VERTICAL}
|