-
Benjamin Hättasch authored
Introduce model Introduce admin interface Show buttons on dashboard start page
Benjamin Hättasch authoredIntroduce model Introduce admin interface Show buttons on dashboard start page
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
admin.py 303 B
from django.contrib import admin
from AKDashboard.models import DashboardButton
@admin.register(DashboardButton)
class DashboardButtonAdmin(admin.ModelAdmin):
list_display = ['text', 'url', 'event']
list_filter = ['event']
search_fields = ['text', 'url']
list_display_links = ['text']