Meta errors in alerts.
[redakcja.git] / src / alerts / admin.py
1 from django.contrib import admin
2 from .models import Alert
3
4
5 @admin.register(Alert)
6 class AlertAdmin(admin.ModelAdmin):
7     list_display = ['book', 'tag']
8     list_filter = ['tag']