Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A bunch of work and improvements #58

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion notification/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 2, 0, "f") # following PEP 386
VERSION = (0, 3, 0, "f") # following PEP 386
DEV_N = None


Expand Down
6 changes: 4 additions & 2 deletions notification/admin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from django.contrib import admin

from notification.models import NoticeType, NoticeSetting, Notice, ObservedItem, NoticeQueueBatch
from notification.models import (NoticeType, NoticeSetting, Notice,
ObservedItem, NoticeQueueBatch)


class NoticeTypeAdmin(admin.ModelAdmin):
Expand All @@ -12,7 +13,8 @@ class NoticeSettingAdmin(admin.ModelAdmin):


class NoticeAdmin(admin.ModelAdmin):
list_display = ["message", "recipient", "sender", "notice_type", "added", "unseen", "archived"]
list_display = ["message", "recipient", "sender", "notice_type",
"added", "unseen", "archived"]


admin.site.register(NoticeQueueBatch)
Expand Down
Loading