FossilRepo
| 4ce269c… | ragelink | 1 | from django.contrib import admin |
| 4ce269c… | ragelink | 2 | |
| 4ce269c… | ragelink | 3 | from core.admin import BaseCoreAdmin |
| 4ce269c… | ragelink | 4 | |
| 4ce269c… | ragelink | 5 | from .models import Page |
| 4ce269c… | ragelink | 6 | |
| 4ce269c… | ragelink | 7 | |
| 4ce269c… | ragelink | 8 | @admin.register(Page) |
| 4ce269c… | ragelink | 9 | class PageAdmin(BaseCoreAdmin): |
| c588255… | ragelink | 10 | list_display = ("name", "slug", "is_published", "created_at", "created_by") |
| 4ce269c… | ragelink | 11 | list_filter = ("is_published",) |
| 4ce269c… | ragelink | 12 | search_fields = ("name", "slug", "content") |